Skip to content

Commit

Permalink
Add warning in preferences dialog
Browse files Browse the repository at this point in the history
Add a warning about flickering effects caused by the Edge browser under
Preferences > General > Appearance.
  • Loading branch information
fedejeanne committed Nov 14, 2024
1 parent 69f6e45 commit 54ccb16
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ public class WorkbenchMessages extends NLS {

public static String StatusUtil_errorOccurred;

public static String EdgeBrowserDisclaimer;

// ==============================================================================
// Workbench Actions
// ==============================================================================
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,8 @@ private void createHiDPISettingsGroup(Composite parent) {
GridLayout layout = new GridLayout(1, false);
group.setLayout(layout);
Label infoLabel = new Label(group, SWT.WRAP);
infoLabel.setText(WorkbenchMessages.RescaleAtRuntimeDisclaimer);
infoLabel.setText(WorkbenchMessages.RescaleAtRuntimeDisclaimer + System.lineSeparator() + System.lineSeparator()
+ WorkbenchMessages.EdgeBrowserDisclaimer);
infoLabel.setLayoutData(GridDataFactory.defaultsFor(infoLabel).create());
createLabel(group, ""); //$NON-NLS-1$

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,7 @@ RescaleAtRuntimeSettingChangeWarningText = Restart for the DPI setting changes t
HiDpiSettingsGroupTitle = HiDPI settings
RescaleAtRuntimeEnabled = Monitor-specific UI &scaling
RescaleAtRuntimeDisclaimer = EXPERIMENTAL! Activating this option will dynamically scale all windows according to the monitor they are currently in. It will also set the default browser to Edge in order to provide the appropriate scaling of content displayed in a browser. This feature is still in development and therefore considered experimental.
EdgeBrowserDisclaimer = WARNING! Changing the size of the browser window can currently cause flickering effects, which are currently being resolved. People who are sensitive to this should therefore either not use Edge at the moment or possibly avoid resizing browser windows.
# --- Workbench -----
WorkbenchPreference_openMode=Open mode
WorkbenchPreference_doubleClick=D&ouble click
Expand Down

0 comments on commit 54ccb16

Please sign in to comment.