From 3086c7542916f86e59db33ce4de0737f81203914 Mon Sep 17 00:00:00 2001 From: Edoardo Batini Date: Thu, 22 May 2008 15:01:02 +0200 Subject: [PATCH] Splitaxis not allowed while in full-window mode --- terminator | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/terminator b/terminator index 314de5f5..3f54332b 100755 --- a/terminator +++ b/terminator @@ -710,7 +710,9 @@ class Terminator: def splitaxis (self, widget, vertical=True): """ Split the provided widget on the horizontal or vertical axis. """ - + #should disable splitaxis menu instead? + if self._fullwindow: + return # create a new terminal and parent pane. terminal = TerminatorTerm (self, self.profile, None, widget.get_cwd()) pane = (vertical) and gtk.VPaned () or gtk.HPaned ()