Commit ecfd1f2e0996704ffb257de6c613b0a149c19afa

Authored by Paulo Henrique Junqueira Amorim
1 parent a8ef0d75

ENH: Setted window size of the ProgressDialog

Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
invesalius/gui/dialogs.py
... ... @@ -78,6 +78,7 @@ class ProgressDialog(object):
78 78 )
79 79  
80 80 self.dlg.Bind(wx.EVT_BUTTON, self.Cancel)
  81 + self.dlg.SetSize(wx.Size(200,150))
81 82  
82 83 def Cancel(self, evt):
83 84 ps.Publisher().sendMessage("Cancel DICOM load")
... ...