Changeset 238:022e80d18d2c
- Timestamp:
- 06/06/12 18:48:03 (12 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/gui/pirep.py
r236 r238 108 108 @staticmethod 109 109 def addVFiller(vBox, height = 4): 110 """Add a filler eventbox to the given vertical box.""" 111 filler = gtk.EventBox() 110 """Add a filler to the given vertical box.""" 111 filler = gtk.Alignment(xalign = 0.0, yalign = 0.0, 112 xscale = 1.0, yscale = 1.0) 112 113 filler.set_size_request(-1, height) 113 114 vBox.pack_start(filler, False, False, 0) … … 528 529 PIREPViewer.addLabeledData(dataBox, 529 530 xstr("pirepView_flightType"), 530 width = 1 0)531 width = 15) 531 532 532 533 self._online = \
Note:
See TracChangeset
for help on using the changeset viewer.