X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8eca4fef106b8327e2e55636de3f68a511a4c392..49bffb1482cd2a6a30b38280f6c9bffc72dbfe42:/wxPython/demo/FileBrowseButton.py diff --git a/wxPython/demo/FileBrowseButton.py b/wxPython/demo/FileBrowseButton.py index 980bc689f6..696273007e 100644 --- a/wxPython/demo/FileBrowseButton.py +++ b/wxPython/demo/FileBrowseButton.py @@ -22,12 +22,12 @@ class TestPanel(wx.Panel): self.fbbh = filebrowse.FileBrowseButtonWithHistory( self, -1, (20, 50), (450, -1), changeCallback = self.fbbhCallback ) - + self.dbb = filebrowse.DirBrowseButton( self, -1, (20, 80), (450, -1), changeCallback = self.dbbCallback ) - self.fbbh.SetHistory(['You', 'can', 'put', 'some', 'file', 'names', 'here']) + self.fbbh.SetHistory(['You', 'can', 'put', 'some', 'filenames', 'here']) def fbbCallback(self, evt): @@ -39,8 +39,10 @@ class TestPanel(wx.Panel): value = evt.GetString() self.log.write('FileBrowseButtonWithHistory: %s\n' % value) history = self.fbbh.GetHistory() - history.append(value) - self.fbbh.SetHistory(history) + if value not in history: + history.append(value) + self.fbbh.SetHistory(history) + self.fbbh.GetHistoryControl().SetStringSelection(value) def dbbCallback(self, evt):