Issue #337 quickfind visibility improved

AS Search Results dialog instead of panel with prev/next
This commit is contained in:
Jindra Petřík
2014-06-01 10:52:52 +02:00
parent c4df6c7ace
commit 303935cf4e
17 changed files with 604 additions and 60 deletions

View File

@@ -104,7 +104,13 @@ public class TextPanel extends JPanel implements ActionListener {
public void updateSearchPos() {
textValue.setCaretPosition(0);
textSearchPanel.showQuickFindDialog(textValue);
View.execInEventDispatchLater(new Runnable() {
@Override
public void run() {
textSearchPanel.showQuickFindDialog(textValue);
}
});
}
@Override