NewTools icon indicating copy to clipboard operation
NewTools copied to clipboard

Once ColorPicker is integrated in newTools

Open Ducasse opened this issue 1 year ago • 0 comments

We should revisit the use of the method Morph>>changeColor

changeColor

	| dialog |
	dialog := ColorSelectorDialogWindow new
		title: 'Choose color';
		selectedColor: self color.
	dialog openModal.
	dialog cancelled
		ifFalse: [self fillStyle: dialog selectedColor]

It feels like we will need a colorPicker in Bloc.

Ducasse avatar Jan 18 '25 13:01 Ducasse