We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c051490 commit b2b5d45Copy full SHA for b2b5d45
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Canvas.java
@@ -264,8 +264,10 @@ void gtk4_focus_window_event(long handle, long event) {
264
if(event == SWT.FocusIn) {
265
gtk_focus_in_event (handle, event);
266
if (caret != null) caret.setFocus ();
267
+ } else {
268
+ gtk_focus_out_event(handle, event);
269
+ if (caret != null) caret.killFocus();
270
}
- else gtk_focus_out_event(handle, event);
271
272
273
@Override
0 commit comments