Skip to content

Commit ef6479f

Browse files
committed
Remove holdable property
1 parent dd681ce commit ef6479f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/imageList.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ namespace ImageList {
5050
{ type: 'colourpicker', name: 'clrTernary', onChange: c => onTernaryColourChange(c), x: 16, y: 56, width: 12, height: 12 },
5151
{ type: 'checkbox', x: 32, y: 56, width: 100, height: 14, text: 'Blend' },
5252
{ type: 'label', x: 16, y: 74, width: 50, height: 14, text: 'Palette:' },
53-
{ type: 'spinner', name: 'spnPalette', x: 68, y: 72, width: 100, height: 14, text: '0', isHoldable: true, onDecrement: () => onDecrementPalette(), onIncrement: () => onIncrementPalette() },
53+
{ type: 'spinner', name: 'spnPalette', x: 68, y: 72, width: 100, height: 14, text: '0', onDecrement: () => onDecrementPalette(), onIncrement: () => onIncrementPalette() },
5454
{ type: 'label', x: 16, y: 92, width: 50, height: 14, text: 'Start ID:' },
55-
{ type: 'spinner', name: 'spnStartId', x: 68, y: 90, width: 100, height: 14, isHoldable: true, text: startId.toString(), onClick: () => onSelectId(), onDecrement: () => onDecrementId(), onIncrement: () => onIncrementId() },
55+
{ type: 'spinner', name: 'spnStartId', x: 68, y: 90, width: 100, height: 14, text: startId.toString(), onClick: () => onSelectId(), onDecrement: () => onDecrementId(), onIncrement: () => onIncrementId() },
5656
{ type: 'custom', name: 'imageList', x: 8, y: 122, width: 200, height: 100, onDraw: function (g) { onDrawImages(this, g); } }
5757
],
5858
onUpdate: () => onUpdate()

0 commit comments

Comments
 (0)