Skip to content

Commit

Permalink
sidebar width from styles
Browse files Browse the repository at this point in the history
  • Loading branch information
danirabbit committed Mar 14, 2024
1 parent 83f3127 commit 52b5302
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/Widgets/MainView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ public class Widgets.MainView : Gtk.Widget {
end_child = app_settings_view,
resize_start_child = false,
shrink_start_child = false,
shrink_end_child = false,
position = 240
shrink_end_child = false
};
main_widget.set_parent (this);
}
Expand Down
3 changes: 2 additions & 1 deletion src/Widgets/Sidebar.vala
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ public class Widgets.Sidebar : Gtk.Box {
app_list.set_sort_func (sort_func);

var scrolled_window = new Gtk.ScrolledWindow () {
child = app_list
child = app_list,
hscrollbar_policy = NEVER
};

var do_not_disturb_label = new Gtk.Label (_("Do Not Disturb"));
Expand Down

0 comments on commit 52b5302

Please sign in to comment.