We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88e83a8 commit f0ddda8Copy full SHA for f0ddda8
bundles/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/FindReplaceDialog.java
@@ -148,12 +148,7 @@ public void modifyText(ModifyEvent e) {
148
// XXX: Workaround for Combo bug on Linux (see bug 404202 and bug 410603)
149
if (fIgnoreNextEvent) {
150
fIgnoreNextEvent = false;
151
- return;
152
}
153
- modificationHandler.run();
154
- fFindField.addModifyListener(event -> {
155
- decorate();
156
- });
157
158
159
@@ -650,6 +645,7 @@ private Composite createInputPanel(Composite parent) {
650
645
fFindModifyListener = new InputModifyListener(() -> {
651
646
updateFindString();
652
647
updateButtonState(!findReplaceLogic.isActive(SearchOptions.INCREMENTAL));
648
+ decorate();
653
649
});
654
fFindField.addModifyListener(fFindModifyListener);
655
0 commit comments