Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/Lib/idlelib/SearchDialog.py

    r2 r391  
    11from Tkinter import *
    2 import SearchEngine
    3 from SearchDialogBase import SearchDialogBase
    42
     3from idlelib import SearchEngine
     4from idlelib.SearchDialogBase import SearchDialogBase
    55
    66def _setup(text):
     
    2525    def create_widgets(self):
    2626        f = SearchDialogBase.create_widgets(self)
    27         self.make_button("Find", self.default_command, 1)
     27        self.make_button("Find Next", self.default_command, 1)
    2828
    2929    def default_command(self, event=None):
    3030        if not self.engine.getprog():
    3131            return
    32         if self.find_again(self.text):
    33             self.close()
     32        self.find_again(self.text)
    3433
    3534    def find_again(self, text):
Note: See TracChangeset for help on using the changeset viewer.