Fixes titlebars not showing if disabled in user profile
* fixes LP#216278 thanks GGLucas
This commit is contained in:
parent
afde88d7dc
commit
c5ff753e97
|
@ -196,10 +196,10 @@ class TerminatorTerm:
|
||||||
self._box.show()
|
self._box.show()
|
||||||
self._box.pack_start(self._titlebox, False)
|
self._box.pack_start(self._titlebox, False)
|
||||||
self._box.pack_start(self._termbox)
|
self._box.pack_start(self._termbox)
|
||||||
if self.reconf('titlebars'):
|
|
||||||
self._titlebox.show()
|
self._titlebox.show()
|
||||||
else:
|
|
||||||
self._titlebox.hide()
|
if not self.reconf('titlebars'):
|
||||||
|
self._title.set_property ('visible', False)
|
||||||
|
|
||||||
self._scrollbar = gtk.VScrollbar (self._vte.get_adjustment ())
|
self._scrollbar = gtk.VScrollbar (self._vte.get_adjustment ())
|
||||||
if self.scrollbar_position != "hidden" and self.scrollbar_position != "disabled":
|
if self.scrollbar_position != "hidden" and self.scrollbar_position != "disabled":
|
||||||
|
|
Loading…
Reference in New Issue