Spotted some unevenness in the initial position of new splits. This fixes it to 50:50

This commit is contained in:
Stephen Boddy 2012-06-25 20:01:35 +02:00
parent b6a75be607
commit cbb86c48c5
2 changed files with 14 additions and 0 deletions

View File

@ -44,6 +44,8 @@ class Paned(Container):
else: else:
container = HPaned() container = HPaned()
self.get_toplevel().set_pos_by_ratio = True
if not sibling: if not sibling:
sibling = self.maker.make('terminal') sibling = self.maker.make('terminal')
sibling.set_cwd(cwd) sibling.set_cwd(cwd)
@ -61,6 +63,11 @@ class Paned(Container):
self.show_all() self.show_all()
while gtk.events_pending():
gtk.main_iteration_do(False)
self.get_toplevel().set_pos_by_ratio = False
def add(self, widget, metadata=None): def add(self, widget, metadata=None):
"""Add a widget to the container""" """Add a widget to the container"""
if len(self.children) == 0: if len(self.children) == 0:

View File

@ -420,6 +420,8 @@ class Window(Container, gtk.Window):
else: else:
container = maker.make('HPaned') container = maker.make('HPaned')
self.set_pos_by_ratio = True
if not sibling: if not sibling:
sibling = maker.make('Terminal') sibling = maker.make('Terminal')
sibling.set_cwd(cwd) sibling.set_cwd(cwd)
@ -435,6 +437,11 @@ class Window(Container, gtk.Window):
container.add(term) container.add(term)
container.show_all() container.show_all()
while gtk.events_pending():
gtk.main_iteration_do(False)
self.set_pos_by_ratio = False
def zoom(self, widget, font_scale=True): def zoom(self, widget, font_scale=True):
"""Zoom a terminal widget""" """Zoom a terminal widget"""
children = self.get_children() children = self.get_children()