Skip to content

Commit a5bdb07

Browse files
amartya4256HeikoKlare
authored andcommitted
Adapt HistoryTextWrapper#notifyListeners to call super
This commit adapts the notifyListeners method in HistoryTextWrapper to call super#notifyListeners since not calling it changes the underlying default behaviour of its superclasses leading to faulty behavior, e.g. it breaks the chain of DPIChange processing leading to a broken drop down button in the HistoryTextWraper on DPIChange Event.
1 parent 911ae9f commit a5bdb07

File tree

1 file changed

+1
-0
lines changed
  • bundles/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/internal/findandreplace/overlay

1 file changed

+1
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ public boolean forceFocus() {
200200

201201
@Override
202202
public void notifyListeners(int eventType, Event event) {
203+
super.notifyListeners(eventType, event);
203204
textBar.notifyListeners(eventType, event);
204205
}
205206

0 commit comments

Comments
 (0)