Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,10 @@ public static void setDeviceZoom (int nativeDeviceZoom) {
private static boolean sholdUseSmoothScaling() {
return switch (SWT.getPlatform()) {
case "gtk" -> deviceZoom / 100 * 100 != deviceZoom;
case "win32" -> isMonitorSpecificScalingActive();
// FIXME the "win32" case should be uncommented as soon as the issue
// https://github.com/eclipse-platform/eclipse.platform.ui/issues/2910
// is properly fixed
// case "win32" -> isMonitorSpecificScalingActive();
default -> false;
};
}
Expand Down
Loading