Hey Robin,don't file Windows bugs in the Ubuntu bug tracker! (Even if it
is the phatch package.) Anyway this bug is inside wxPython so there is
nothing we can do about it.

pyWx/dialogs.py
class ProgressDialog(wx.ProgressDialog, ProgressReceiver):
    """+1 is added because eg opening a file is also an action"""

    def __init__(self, parent, title, parent_max=1, child_max=1, message=''):
        if message == '':
            message = '.' * 80
        ProgressReceiver.__init__(self, parent_max, child_max)
        wx.ProgressDialog.__init__(self,
                title=title,
                message=message,
                maximum=self.max,
                parent=parent,
                style=wx.PD_CAN_ABORT
                            | wx.PD_APP_MODAL
                            | wx.PD_REMAINING_TIME
                            | wx.PD_SMOOTH)
        self.Bind(wx.EVT_CLOSE, self.close, self)
        self.CentreOnParent()

** Changed in: phatch (Ubuntu)
       Status: New => Invalid

** Changed in: phatch (Ubuntu)
     Assignee: (unassigned) => Stani (stani)

** Summary changed:

- Phatch/Windows7 Window Stack Order Issue
+ [Windows7] Progress Window Stack Order Issue

-- 
[Windows7] Progress Window Stack Order Issue
https://bugs.launchpad.net/bugs/549118
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to