diff --git a/Mac/Lib/EasyDialogs.py b/Mac/Lib/EasyDialogs.py index c585d91a61a..b42674a3fc5 100644 --- a/Mac/Lib/EasyDialogs.py +++ b/Mac/Lib/EasyDialogs.py @@ -131,16 +131,19 @@ def __init__(self, title="Working...", maxval=100, label=""): self._update(0) def __del__( self ): + self.d.BringToFront() self.d.HideWindow() del self.d def title(self, newstr=""): """title(text) - Set title of progress window""" + self.d.BringToFront() w = self.d.GetDialogWindow() w.SetWTitle(newstr) def label( self, *newstr ): """label(text) - Set text in progress box""" + self.d.BringToFront() if newstr: self._label = newstr[0] tp, text_h, rect = self.d.GetDialogItem(2)