Skip to content

Commit

Permalink
Align the viewer AspectFrame widget vertically to the bottom
Browse files Browse the repository at this point in the history
This keeps it near the playback controls
  • Loading branch information
nekohayo committed Sep 11, 2011
1 parent 5a20a8e commit 31c77d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pitivi/ui/viewer.py
Expand Up @@ -270,7 +270,7 @@ def _externalWindowConfigureCb(self, window, event):
def _createUi(self):
""" Creates the Viewer GUI """
# drawing area
self.aframe = gtk.AspectFrame(xalign=0.5, yalign=0.5, ratio=4.0 / 3.0,
self.aframe = gtk.AspectFrame(xalign=0.5, yalign=1.0, ratio=4.0 / 3.0,
obey_child=False)

self.internal = ViewerWidget(self.app.settings)
Expand Down

0 comments on commit 31c77d5

Please sign in to comment.