We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83fc24d commit a589ee9Copy full SHA for a589ee9
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Sash.java
@@ -152,9 +152,9 @@ void createHandle(int index) {
152
if (GTK.GTK4) {
153
GTK4.gtk_widget_set_focusable(handle, true);
154
if ((style & SWT.VERTICAL) != 0) {
155
- defaultCursor = GDK.gdk_cursor_new_from_name("sb_h_double_arrow", 0);
+ defaultCursor = GDK.gdk_cursor_new_from_name("ew-resize", 0);
156
} else {
157
- defaultCursor = GDK.gdk_cursor_new_from_name("sb_v_double_arrow", 0);
+ defaultCursor = GDK.gdk_cursor_new_from_name("ns-resize", 0);
158
}
159
160
GTK3.gtk_widget_set_has_window(handle, true);
0 commit comments