From 246b7a1e3628665ce63a8414c1b6c8aa3fcbead2 Mon Sep 17 00:00:00 2001 From: Emmanuel Bretelle Date: Fri, 29 Feb 2008 17:50:32 +0000 Subject: [PATCH] Added grandparent.resize_children() in Terminator.remove() to force the terminal term to have the right size when returning otherwise, resizing is delayed and dnd between 2 siblings will squeeze a term --- terminator | 1 + 1 file changed, 1 insertion(+) diff --git a/terminator b/terminator index e5960dee..3029022a 100755 --- a/terminator +++ b/terminator @@ -879,6 +879,7 @@ class Terminator: parent.remove(widget.get_box()) grandparent.remove (parent) sibling.reparent (grandparent) + grandparent.resize_children() parent.destroy () self.term_list.remove (widget)