File tree Expand file tree Collapse file tree 6 files changed +42
-22
lines changed Expand file tree Collapse file tree 6 files changed +42
-22
lines changed Original file line number Diff line number Diff line change 21
21
},
22
22
#path : @7
23
23
},
24
+ SquotImageMapper {
25
+ #path : FSAbsolutePath [
26
+ 'GMTEIcons',
27
+ 'undo.png'
28
+ ],
29
+ #encoding : Class [ #PNGReadWriter ]
30
+ },
24
31
SquotImageMapper {
25
32
#path : FSAbsolutePath [
26
33
'testingResources',
49
56
'GMTEIcons',
50
57
'trash.png'
51
58
],
52
- #encoding : Class [ #PNGReadWriter ]
59
+ #encoding : @12
53
60
},
54
61
SquotPlaintextMapper {
55
62
#path : FSAbsolutePath [
64
71
'GMTEIcons',
65
72
'up.png'
66
73
],
67
- #encoding : @21
74
+ #encoding : @12
68
75
},
69
76
SquotTonelMapper {
70
77
#package : MCPackage {
77
84
'testingResources',
78
85
'squeak.png'
79
86
],
80
- #encoding : @21
87
+ #encoding : @12
81
88
},
82
89
SquotCypressMapper {
83
90
#package : MCPackage {
92
99
'GMTEIcons',
93
100
'rename.png'
94
101
],
95
- #encoding : @21
102
+ #encoding : @12
96
103
},
97
104
SquotPlaintextMapper {
98
105
#path : FSAbsolutePath [
105
112
'GMTEIcons',
106
113
'down.png'
107
114
],
108
- #encoding : @21
115
+ #encoding : @12
109
116
},
110
117
SquotPlaintextMapper {
111
118
#path : FSAbsolutePath [
147
154
'GMTEIcons',
148
155
'merge.png'
149
156
],
150
- #encoding : @21
157
+ #encoding : @12
151
158
},
152
159
SquotSoundMapper {
153
160
#path : FSAbsolutePath [
188
195
'GMTEIcons',
189
196
'broom.png'
190
197
],
191
- #encoding : @21
198
+ #encoding : @12
192
199
},
193
200
SquotPlaintextMapper {
194
201
#path : FSAbsolutePath [
213
220
'GMTEIcons',
214
221
'eye.png'
215
222
],
216
- #encoding : @21
223
+ #encoding : @12
217
224
},
218
225
SquotCypressMapper {
219
226
#package : MCPackage {
223
230
'source'
224
231
]
225
232
},
233
+ SquotImageMapper {
234
+ #path : FSAbsolutePath [
235
+ 'GMTEIcons',
236
+ 'redo.png'
237
+ ],
238
+ #encoding : @12
239
+ },
226
240
SquotPlaintextMapper {
227
241
#path : FSAbsolutePath [
228
242
'LICENSE'
234
248
'GMTEIcons',
235
249
'add.png'
236
250
],
237
- #encoding : @21
251
+ #encoding : @12
238
252
},
239
253
SquotTonelMapper {
240
254
#package : MCPackage {
Original file line number Diff line number Diff line change @@ -647,7 +647,7 @@ GMTEEditor >> createTilestoreSpecWithBuilder: aBuilder [
647
647
648
648
{
649
649
#category : #building ,
650
- #' squeak_changestamp' : ' Alex M 7/1 /2024 15:48 '
650
+ #' squeak_changestamp' : ' TW 7/2 /2024 18:34 '
651
651
}
652
652
GMTEEditor >> createToolBarSpecWithBuilder: aBuilder [
653
653
" creates the spec for the tool bar"
@@ -656,18 +656,24 @@ GMTEEditor >> createToolBarSpecWithBuilder: aBuilder [
656
656
name: ' toolbar' ;
657
657
model: self ;
658
658
frame: (LayoutFrame fractions: (0 @0 corner: 1 @0 ) offsets: (0 @0 corner: 0 @30 ));
659
- children: {(aBuilder pluggableButtonSpec new )
660
- name: ' undo' ;
661
- label: ' undo' ;
662
- model: self ;
663
- frame: (LayoutFrame fractions: (0 @ 0 corner: 0.25 @ 1 ) offsets: nil );
664
- action: #undo .
665
- (aBuilder pluggableButtonSpec new )
666
- name: ' redo' ;
667
- label: ' redo' ;
668
- model: self ;
669
- frame: (LayoutFrame fractions: (0.25 @ 0 corner: 0.5 @ 1 ) offsets: nil );
670
- action: #redo .
659
+ children: {
660
+ (aBuilder pluggableImageButtonSpec new )
661
+ name: ' undo' ;
662
+ label: ' undo' ;
663
+ model: self ;
664
+ frame: (LayoutFrame fractions: (0 @ 0 corner: 0.25 @ 1 ) offsets: nil );
665
+ action: #undo ;
666
+ project: ' GameMecha' ;
667
+ path: ' /GMTEIcons/undo.png' .
668
+
669
+ (aBuilder pluggableImageButtonSpec new )
670
+ name: ' redo' ;
671
+ label: ' redo' ;
672
+ model: self ;
673
+ frame: (LayoutFrame fractions: (0.25 @ 0 corner: 0.5 @ 1 ) offsets: nil );
674
+ action: #redo ;
675
+ project: ' GameMecha' ;
676
+ path: ' /GMTEIcons/redo.png' .
671
677
};
672
678
673
679
verticalResizing: #shrinkWrap ;
You can’t perform that action at this time.
0 commit comments