Prevent splitting while a terminal is maximised/zoomed. Closes LP #558330
This commit is contained in:
parent
29015d7969
commit
71e6acd6e4
|
@ -311,6 +311,10 @@ class Window(Container, gtk.Window):
|
||||||
|
|
||||||
def split_axis(self, widget, vertical=True, cwd=None, sibling=None, widgetfirst=True):
|
def split_axis(self, widget, vertical=True, cwd=None, sibling=None, widgetfirst=True):
|
||||||
"""Split the window"""
|
"""Split the window"""
|
||||||
|
if self.get_property('term_zoomed') == True:
|
||||||
|
err("You can't split while a terminal is maximised/zoomed")
|
||||||
|
return
|
||||||
|
|
||||||
order = None
|
order = None
|
||||||
maker = Factory()
|
maker = Factory()
|
||||||
self.remove(widget)
|
self.remove(widget)
|
||||||
|
|
Loading…
Reference in New Issue