From ef58adf8d6828475a95b36b390d6b788e0894c99 Mon Sep 17 00:00:00 2001 From: "Kurt B. Kaiser" Date: Sat, 7 Jun 2003 03:21:17 +0000 Subject: 1. Find in Files Dialog shows text selection if there is one 2. Remove obsolete comment associated with Window menu updating M EditorWindow.py M GrepDialog.py --- Lib/idlelib/GrepDialog.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Lib/idlelib/GrepDialog.py') diff --git a/Lib/idlelib/GrepDialog.py b/Lib/idlelib/GrepDialog.py index 84cac0ea31a..79fad31a746 100644 --- a/Lib/idlelib/GrepDialog.py +++ b/Lib/idlelib/GrepDialog.py @@ -11,7 +11,8 @@ def grep(text, io=None, flist=None): if not hasattr(engine, "_grepdialog"): engine._grepdialog = GrepDialog(root, engine, flist) dialog = engine._grepdialog - dialog.open(io) + searchphrase = text.get("sel.first", "sel.last") + dialog.open(text, searchphrase, io) class GrepDialog(SearchDialogBase): @@ -25,8 +26,8 @@ class GrepDialog(SearchDialogBase): self.globvar = StringVar(root) self.recvar = BooleanVar(root) - def open(self, io=None): - SearchDialogBase.open(self, None) + def open(self, text, searchphrase, io=None): + SearchDialogBase.open(self, text, searchphrase) if io: path = io.filename or "" else: -- cgit v1.2.3