There's no reason anymore to special-case notebook here

This commit is contained in:
Chris Jones 2009-12-09 13:02:31 +00:00
parent 24b6082155
commit 67b79ff1da
1 changed files with 3 additions and 8 deletions

View File

@ -113,18 +113,13 @@ class Paned(Container):
def wrapcloseterm(self, widget): def wrapcloseterm(self, widget):
"""A child terminal has closed, so this container must die""" """A child terminal has closed, so this container must die"""
dbg('Paned::wrapcloseterm: Called on %s' % widget)
if self.closeterm(widget): if self.closeterm(widget):
# At this point we only have one child, which is the surviving term # At this point we only have one child, which is the surviving term
sibling = self.children[0] sibling = self.children[0]
self.remove(sibling) self.remove(sibling)
parent = self.get_parent() parent = self.get_parent()
maker = Factory()
if maker.isinstance(parent, 'Notebook'):
page_num = parent.page_num(self)
parent.remove_page(page_num)
parent.insert_page(sibling, None, page_num)
else:
parent.remove(self) parent.remove(self)
parent.add(sibling) parent.add(sibling)
del(self) del(self)