Skip to content

Commit

Permalink
Indicator: Remove vertical seperator (#220)
Browse files Browse the repository at this point in the history
* Indicator: Remove vertical seperator

* Update screenshot
  • Loading branch information
danirabbit authored May 26, 2020
1 parent c750f02 commit 682df13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Binary file modified data/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 3 additions & 4 deletions src/Indicator.vala
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,9 @@ public class DateTime.Indicator : Wingpanel.Indicator {
main_grid = new Gtk.Grid ();
main_grid.margin_top = 12;
main_grid.attach (calendar, 0, 0);
main_grid.attach (new Gtk.Separator (Gtk.Orientation.VERTICAL), 1, 0);
main_grid.attach (scrolled_window, 2, 0);
main_grid.attach (new Wingpanel.Widgets.Separator (), 0, 2, 3);
main_grid.attach (settings_button, 0, 3, 3);
main_grid.attach (scrolled_window, 1, 0);
main_grid.attach (new Wingpanel.Widgets.Separator (), 0, 2, 2);
main_grid.attach (settings_button, 0, 3, 2);

var size_group = new Gtk.SizeGroup (Gtk.SizeGroupMode.HORIZONTAL);
size_group.add_widget (calendar);
Expand Down

0 comments on commit 682df13

Please sign in to comment.