Skip to content

Commit e532acb

Browse files
committed
Remove notification pop-up informing about find/replace overlay UI
The find/replace overlay UI inside an editor replacing the existing find/replace dialog UI (or serving as an enabled-by-default alternative) was released together with a notification pop-up that informs about the new UI and the ability to switch back to the existing UI when the product is started for the first time. After five releases, the notification became obsolete as the UI is actually not new anymore and most users starting a product for the first time already know it. Thus, this change removes the notification pop-up for the find/replace overlay UI.
1 parent c055ac5 commit e532acb

File tree

2 files changed

+1
-119
lines changed

2 files changed

+1
-119
lines changed

bundles/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/internal/findandreplace/overlay/FindReplaceOverlayFirstTimePopup.java

Lines changed: 0 additions & 115 deletions
This file was deleted.

bundles/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/FindReplaceAction.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
import org.eclipse.core.runtime.Assert;
2424
import org.eclipse.core.runtime.Platform;
2525
import org.eclipse.core.runtime.preferences.IEclipsePreferences;
26-
import org.eclipse.core.runtime.preferences.IPreferencesService;
2726
import org.eclipse.core.runtime.preferences.IEclipsePreferences.IPreferenceChangeListener;
2827
import org.eclipse.core.runtime.preferences.IEclipsePreferences.PreferenceChangeEvent;
28+
import org.eclipse.core.runtime.preferences.IPreferencesService;
2929
import org.eclipse.core.runtime.preferences.InstanceScope;
3030

3131
import org.eclipse.jface.dialogs.IPageChangedListener;
@@ -40,7 +40,6 @@
4040
import org.eclipse.ui.IWorkbenchPartSite;
4141
import org.eclipse.ui.IWorkbenchWindow;
4242
import org.eclipse.ui.internal.findandreplace.overlay.FindReplaceOverlay;
43-
import org.eclipse.ui.internal.findandreplace.overlay.FindReplaceOverlayFirstTimePopup;
4443

4544

4645
/**
@@ -424,8 +423,6 @@ private void showOverlayInEditor() {
424423
shellToUse = fShell;
425424
}
426425
overlay = new FindReplaceOverlay(shellToUse, fWorkbenchPart, fTarget);
427-
428-
FindReplaceOverlayFirstTimePopup.displayPopupIfNotAlreadyShown(shellToUse);
429426
}
430427

431428
overlay.open();

0 commit comments

Comments
 (0)