Skip to content

Commit 355071e

Browse files
committed
Remove the help icon from the restart Eclipse due to theme changes
Operating system Ui guidelines do not recommend the usage of the help icon in a dialog. For example check the screenshots in the Windows guidelines for dialogs. Operating System UI Guidelines Windows UI guidence https://docs.microsoft.com/en-us/windows/apps/design/controls/dialogs-and-flyouts/dialogs Gnome UI guidence https://developer.gnome.org/hig/patterns/feedback/dialogs.html Mac UI guidence https://developer.apple.com/design/human-interface-guidelines/components/presentation/alerts/
1 parent a0dd966 commit 355071e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewsPreferencePage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ public boolean performOk() {
314314
*/
315315
private void showRestartDialog() {
316316
if (new MessageDialog(null, WorkbenchMessages.ThemeChangeWarningTitle, null,
317-
WorkbenchMessages.ThemeChangeWarningText, MessageDialog.QUESTION, 2,
317+
WorkbenchMessages.ThemeChangeWarningText, MessageDialog.NONE, 2,
318318
WorkbenchMessages.Workbench_RestartButton, WorkbenchMessages.Workbench_DontRestartButton)
319319
.open() == Window.OK) {
320320
Display.getDefault().asyncExec(() -> PlatformUI.getWorkbench().restart());

0 commit comments

Comments
 (0)