Community
Participate
Working Groups
The visual appearance of the ToggleButtons outputmarker depends on the order in which setOutputOnly() and setSelected() is called. The following two snippets lead to different result: Case 1: choiceFirst.setSelected(true); choiceFirst.setOutputOnly(true); Case 2: choiceLast.setOutputOnly(true); choiceLast.setSelected(true);
Created attachment 177411 [details] Screenshot showing the result of the 2 snippets
Created attachment 177412 [details] Patch for the SWT-ExampleClient to reproduce the bug
Reproducible, thanks! Interesting side note: it works if the setters are not called from inside the listener, but from configureRigets() (that's why I didn't catch it earlier).
Created attachment 177491 [details] Possible Fix Here is a patch that fixes this. I'm investigating one more alternative, so I haven't committed this yet.
Ressigning to default assignee. Not working on Riena right now.
Reassigning to default assignee. Not working on Riena right now.
Fixed for single radio buttons, check boxes, and ChoiceComposite.