Problems I see currently in the calligraphic toolbar:
- Alt+x does not activate the first widget of the toolbar (you need to assign to it "altx-calligraphy" string for that, as was done before, see desktop->setToolboxFocusTo)
- Left/right and up/down shortcuts in Calligraphic are broken (again, a matter of assigning proper strings to spinbuttons so they are accessible from the tool context)
- Esc in a spinbutton must undo any changes in it and return focus to the canvas; see the old code in spinbutton-events for how this is done
- Enter must set the new value and return focus to the canvas; see the old code in spinbutton-events for how this is done
- Tab must pass focus to the next field in the toolbar; instead it returns focus to the canvas
- there must be a space before the next spinbutton's label so they don't run into one another
- the size of the spinbuttons is bigger than before
- when some stuff does not fit, there's usually a big empty space before the end, which looks weird. Ideally, a partially visible widget should be shown there instead - that will give the user a much better idea of what's going on
- the "show me more" button needs an explanatory tooltip
- in the "show me more" menu, selecting a spinbutton item does nothing. At least the current value must be listed, but properly you need to allow editing it somehow.