Skip to content

Commit

Permalink
Add separators where needed
Browse files Browse the repository at this point in the history
  • Loading branch information
DevAlien committed Aug 23, 2020
1 parent 478ed0c commit 4438832
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/PreferencesWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ public class Workspaces.PreferencesWindow : Gtk.ApplicationWindow {
var sidebar = new Gtk.Box (Gtk.Orientation.VERTICAL, 0);
sidebar.get_style_context ().add_class ("pane");
sidebar.pack_start (source_list, true, true, 0);
sidebar.add (new Gtk.Separator (Gtk.Orientation.HORIZONTAL));
sidebar.pack_end (action_box, false, false, 0);
/* End Sidebar */

Expand Down
1 change: 1 addition & 0 deletions src/QuickLaunchWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ public class Workspaces.QuickLaunchWindow : Gtk.Window {
action_box.pack_start (add_revealer, false, false, 0);
var main_box = new Gtk.Box (Gtk.Orientation.VERTICAL, 0);
main_box.add (stack);
main_box.add (new Gtk.Separator (Gtk.Orientation.HORIZONTAL));
main_box.add (action_box);

add (main_box);
Expand Down

0 comments on commit 4438832

Please sign in to comment.