← Back to team overview

phatch-dev team mailing list archive

[Bug 516858] Re: Execute dialog is cramped in Mac OS X

 

Hi Greg,

You have a Mac right? Could you take care of this? It is pretty simple,
fill the right width in phatch/pyWx/dialogs.py (line 132):

class ExecuteDialog(BrowseMixin, dialogs.ExecuteDialog):

    def __init__(self, parent, drop=False, **options):
        super(ExecuteDialog, self).__init__(parent, -1, **options)
        self.set_drop(drop)
        # width needs to be corrected manually as it is set too small
        if wx.Platform == '__WXGTK__':
            width = 600
        elif wx.Platform == '__WXMAC__':
            width = 450 #<----CHANGE THIS HERE!!
        else:
            width = 450
        self.SetSize((width, self.GetSize()[1]))

Create a new branch for it and attach a screenshot here of the result.
Thanks!

** Changed in: phatch
     Assignee: (unassigned) => Gregory Meno (greg-meno)

-- 
Execute dialog is cramped in Mac OS X
https://bugs.launchpad.net/bugs/516858
You received this bug notification because you are a member of Phatch
Developers, which is subscribed to Phatch.

Status in Phatch = Photo & Batch!: Confirmed

Bug description:
A screenshot is attached





References