~ubuntu-branches/debian/stretch/phatch/stretch

« back to all changes in this revision

Viewing changes to phatch/pyWx/wxGlade/frame.py

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ożarowski, Stani M, Piotr Ożarowski
  • Date: 2008-07-21 12:53:17 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080721125317-sqk2sdl3pwl2u4gl
Tags: 0.1.5-1
[ Stani M ]
* New upstream release(Closes LP: #228259, #232436, #236282, #236462, #237359)
* debian/control:
  - Added pkg-config and python-nautilus to build-depends, as
    setup.py uses nautilus-python.pc to look for the nautilus
    extensions path. Closes: #475233.
* debian/patches:
  - All patches of Ubuntu and Debian are implemented upstream and are removed
    from the package

[ Piotr Ożarowski ]
* Bump Standards-Version to 3.8.0 (no changes needed)
* debian/copyright wrapped at column 80 (where possible)

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
 
162
162
    def __set_properties(self):
163
163
        # begin wxGlade: Frame.__set_properties
164
 
        self.SetSize((400, 600))
165
164
        self.frame_statusbar.SetStatusWidths([-1])
166
165
        # statusbar fields
167
166
        frame_statusbar_fields = [""]
179
178
        sizer_1.Add(self.tree, 1, wx.EXPAND, 0)
180
179
        sizer_1.Add(self.empty, 1, wx.EXPAND|wx.ALIGN_CENTER_HORIZONTAL|wx.ALIGN_CENTER_VERTICAL, 0)
181
180
        self.SetSizer(sizer_1)
 
181
        sizer_1.Fit(self)
182
182
        self.Layout()
183
 
        self.SetSize((400, 600))
184
183
        # end wxGlade
185
184
 
186
185
    def on_menu_file_new(self, event): # wxGlade: Frame.<event_handler>