Skip to content

Commit

Permalink
Use Gtk.Separator instead of Wingpanel.Widgets.Separator
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Derbenev committed Mar 30, 2021
1 parent bc2742b commit 5df9420
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Indicator.vala
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public class DateTime.Indicator : Wingpanel.Indicator {
main_grid.margin_top = 12;
main_grid.attach (calendar, 0, 0);
main_grid.attach (scrolled_window, 1, 0);
main_grid.attach (new Wingpanel.Widgets.Separator (), 0, 2, 2);
main_grid.attach (new Gtk.Separator (Gtk.Orientation.HORIZONTAL), 0, 2, 2);
main_grid.attach (settings_button, 0, 3, 2);

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

0 comments on commit 5df9420

Please sign in to comment.