X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a91fbc8e34b7b4bf203b03ac66f129e85cdfa53b..619dcb095efac5a79b6bd1e7c65d62d651ef48fc:/wxPython/demo/FileBrowseButton.py

diff --git a/wxPython/demo/FileBrowseButton.py b/wxPython/demo/FileBrowseButton.py
index 369c245769..2af110a9f8 100644
--- a/wxPython/demo/FileBrowseButton.py
+++ b/wxPython/demo/FileBrowseButton.py
@@ -27,7 +27,8 @@ class TestPanel(wx.Panel):
             self, -1, size=(450, -1), changeCallback = self.dbbCallback
             )
 
-        self.fbbh.SetHistory(['You', 'can', 'put', 'some', 'filenames', 'here'])
+        self.fbbh.callCallback = False
+        self.fbbh.SetHistory(['You', 'can', 'put', 'some', 'filenames', 'here'], 4)
 
         sizer = wx.BoxSizer(wx.VERTICAL)
         sizer.Add(self.fbb, 0, wx.ALL, 5)
@@ -45,6 +46,8 @@ class TestPanel(wx.Panel):
     def fbbhCallback(self, evt):
         if hasattr(self, 'fbbh'):
             value = evt.GetString()
+            if not value:
+                return
             self.log.write('FileBrowseButtonWithHistory: %s\n' % value)
             history = self.fbbh.GetHistory()
             if value not in history: