Skip to content
Snippets Groups Projects
Commit d54f28f9 authored by Daniel Brötzmann's avatar Daniel Brötzmann
Browse files

SideBarSwitcher: Enable vexpand

Fixes #10359
parent d9a7aa04
No related branches found
No related tags found
No related merge requests found
...@@ -19,9 +19,10 @@ ...@@ -19,9 +19,10 @@
class SideBarSwitcher(Gtk.ListBox): class SideBarSwitcher(Gtk.ListBox):
def __init__(self): def __init__(self):
Gtk.ListBox.__init__(self) Gtk.ListBox.__init__(self)
self._stack = None self.set_vexpand(True)
self.get_style_context().add_class('settings-menu') self.get_style_context().add_class('settings-menu')
self.connect('row-activated', self._on_row_activated) self.connect('row-activated', self._on_row_activated)
self._stack = None
def set_stack(self, stack): def set_stack(self, stack):
self._stack = stack self._stack = stack
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment