made narrow version of macro stepper icon
moved icons to standard place svn: r9822
This commit is contained in:
parent
72cb7a1c0a
commit
42e2611ca1
BIN
collects/icons/macro-stepper-narrow.png
Normal file
BIN
collects/icons/macro-stepper-narrow.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 735 B |
Before Width: | Height: | Size: 963 B After Width: | Height: | Size: 963 B |
|
@ -1,6 +1,5 @@
|
||||||
#lang setup/infotab
|
#lang setup/infotab
|
||||||
|
|
||||||
(define tools '(["tool.ss"]))
|
(define tools '(["tool.ss"]))
|
||||||
(define tool-icons '("view/icon-small.png"))
|
|
||||||
(define tool-names '("Macro Stepper"))
|
(define tool-names '("Macro Stepper"))
|
||||||
(define scribblings '(("macro-debugger.scrbl" () (tool-library))))
|
(define scribblings '(("macro-debugger.scrbl" () (tool-library))))
|
||||||
|
|
|
@ -57,9 +57,14 @@
|
||||||
|
|
||||||
(define macro-debugger-bitmap
|
(define macro-debugger-bitmap
|
||||||
(make-object bitmap%
|
(make-object bitmap%
|
||||||
(build-path (collection-path "macro-debugger") "view" "icon-small.png")
|
(build-path (collection-path "icons") "macro-stepper.png")
|
||||||
'png/mask))
|
'png/mask))
|
||||||
|
|
||||||
|
(define macro-debugger-up-bitmap
|
||||||
|
(make-object bitmap%
|
||||||
|
(build-path (collection-path "icons") "macro-stepper-narrow.png")
|
||||||
|
'png/mask))
|
||||||
|
|
||||||
(define (macro-debugger-unit-frame-mixin %)
|
(define (macro-debugger-unit-frame-mixin %)
|
||||||
(class %
|
(class %
|
||||||
(super-new)
|
(super-new)
|
||||||
|
@ -73,6 +78,7 @@
|
||||||
(new switchable-button%
|
(new switchable-button%
|
||||||
(label "Macro Stepper")
|
(label "Macro Stepper")
|
||||||
(bitmap macro-debugger-bitmap)
|
(bitmap macro-debugger-bitmap)
|
||||||
|
(alternate-bitmap macro-debugger-up-bitmap)
|
||||||
(parent macro-debug-panel)
|
(parent macro-debug-panel)
|
||||||
(callback (λ (button) (execute #t)))))
|
(callback (λ (button) (execute #t)))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user