dev-python/python-dsv: Apply Debian patches also fixing wxpython3 compat (#601178)

Package-Manager: portage-2.3.2
This commit is contained in:
Pacho Ramos
2016-11-29 21:34:07 +01:00
parent 3466d1bb37
commit e0080102e0
6 changed files with 530 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
--- a/DSV/DSV.py
+++ b/DSV/DSV.py
@@ -676,7 +676,7 @@ if wx is not None:
style = wx.TAB_TRAVERSAL, name = "ImportWizardPanel"):
wx.Panel.__init__(self, parent, id, pos, size, style, name)
self.SetAutoLayout(True)
- mainSizer = wx.FlexGridSizer(3, 1)
+ mainSizer = wx.FlexGridSizer(4, 1)
self.SetSizer(mainSizer)
mainSizer.AddGrowableCol(0)
@@ -1089,7 +1089,8 @@ if __name__ == '__main__':
else:
dlg.Destroy()
- return True
+ # return True
+ sys.exit()
app = SampleApp()
app.MainLoop()