You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Shell.java
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -457,6 +457,10 @@ public void test_getImeInputMode() {
457
457
@Override
458
458
@Test
459
459
publicvoidtest_getLocation() {
460
+
//Setting location for Windows is not supported in GTK4
461
+
if (isGTK4()) {
462
+
return;
463
+
}
460
464
shell.setLocation(10,15);
461
465
assertEquals(":a:", 10, shell.getLocation().x);
462
466
assertEquals(":b:", 15, shell.getLocation().y);
@@ -999,4 +1003,27 @@ public void test_Issue450_NoShellActivateOnSetFocus() {
0 commit comments