]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/wx/lib/imagebrowser.py
Fix or add some DoGetBestSize's
[wxWidgets.git] / wxPython / wx / lib / imagebrowser.py
index 27b56de806c816dc4f827dad0c2f24585001d8f7..da40ffc340aac4f57ab9052a2a72694f7546bccd 100644 (file)
@@ -124,7 +124,7 @@ class ImageDialog(wx.Dialog):
         self.y_pos = 20
         self.delta = 20
 
-        size = wxSize(80, 25)
+        size = wx.Size(80, 25)
 
         self.set_dir = os.getcwd()
         self.set_file = None
@@ -139,7 +139,7 @@ class ImageDialog(wx.Dialog):
 
         self.y_pos = self.y_pos + self.delta
 
-        btn = wx.Button(self, -1, ' Set Directory ', (self.x_pos, self.y_pos), size).SetDefault()
+        btn = wx.Button(self, 12331, ' Set Directory ', (self.x_pos, self.y_pos), size)
         self.Bind(wx.EVT_BUTTON, self.SetDirect, btn)
 
         self.type_posy = self.y_pos     # save the y position for the image type combo
@@ -194,7 +194,7 @@ class ImageDialog(wx.Dialog):
 
         self.y_pos = self.y_pos + height + 20
 
-        btn = wx.Button(self, -1, ' Select ', (100, self.y_pos), size).SetDefault()
+        btn = wx.Button(self, -1, ' Select ', (100, self.y_pos), size)
         self.Bind(wx.EVT_BUTTON, self.OnOk, btn)
 
         wx.Button(self, wx.ID_CANCEL, 'Cancel', (250, self.y_pos), size)