Replies: 1 comment 1 reply
-
The SWT checkboxes are delegated to native widgets on all OSs, so this is most likely the default behavior of your OS, not something SWT implements specifically.
I imagine it's also how native checkboxes are expected to behave. If not, is this reported as a bug in some tracker? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For SWT checkboxes we see the color turning to blue on mouse hover.
Is there a way to replicate similar behavior with Focus In listeners?
We have checkboxes in our application with no text assigned to them.
As a result when they have focus no dotted lines gets drawn around them as this is a known SWT issue.
As a workaround we want to highlight the checkbox blue on focus similar to what happens when we move our mouse over the checkbox.
Is there a way we can achieve this?
Sending control.notifyListeners(SWT.MouseMove, new Event()); or control.notifyListeners(SWT.MouseMove, new Event()); on focus in does not seem to work for us.
Beta Was this translation helpful? Give feedback.
All reactions