Commit e6f258d8394cad4040d04d49aea99f19e96db3c0
1 parent
bc21685f
Exists in
master
and in
6 other branches
ADD: Resized progressDialog in the loading serie
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
invesalius/gui/dialogs.py
... | ... | @@ -71,14 +71,14 @@ class ProgressDialog(object): |
71 | 71 | maximum = self.maximum, |
72 | 72 | parent = None, |
73 | 73 | style = wx.PD_CAN_ABORT |
74 | - | wx.PD_APP_MODAL | |
74 | + | wx.PD_APP_MODAL, | |
75 | 75 | #| wx.PD_ELAPSED_TIME |
76 | 76 | #| wx.PD_ESTIMATED_TIME |
77 | 77 | #| wx.PD_REMAINING_TIME |
78 | 78 | ) |
79 | 79 | |
80 | 80 | self.dlg.Bind(wx.EVT_BUTTON, self.Cancel) |
81 | - self.dlg.SetSize(wx.Size(215,150)) | |
81 | + self.dlg.SetSize(wx.Size(250,150)) | |
82 | 82 | |
83 | 83 | def Cancel(self, evt): |
84 | 84 | ps.Publisher().sendMessage("Cancel DICOM load") | ... | ... |