Strange behavior for the scrollbar in the bottombar

Fixes #012438
This commit is contained in:
SNoiraud 2021-09-18 13:58:15 +02:00 committed by Nick Hall
parent 3ad5248af0
commit 60b4866296
2 changed files with 1 additions and 5 deletions

View File

@ -165,7 +165,7 @@ class PageView(DbGUIElement, metaclass=ABCMeta):
self.widget.show_all()
self.widget.set_name('view')
self.vpane.pack1(self.widget, resize=True, shrink=False)
self.vpane.pack2(self.bottombar, resize=False, shrink=True)
self.vpane.pack2(self.bottombar, resize=False, shrink=False)
self.vpane.show()
self._config.register('vpane.slider-position', -1)
self.vpane.set_position(self._config.get('vpane.slider-position'))

View File

@ -371,10 +371,6 @@ class GrampletBar(Gtk.Notebook):
"""
Add a tab to the notebook for the given gramplet.
"""
width = -1 # Allow tab width to adjust (smaller) to sidebar
height = min(int(self.uistate.screen_height() * 0.20), 400)
gramplet.set_size_request(width, height)
label = self.__create_tab_label(gramplet)
page_num = self.append_page(gramplet, label)
return page_num