From 7ce8bd650c7c3f65eb5fe14420e176da45e09d02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Thu, 3 Sep 2026 18:43:16 -0700 Subject: [PATCH] NotificationsList: fix separator margin --- src/Indicator.vala | 4 +--- src/Widgets/NotificationsList.vala | 2 ++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Indicator.vala b/src/Indicator.vala index 1eeceddc..0b70f837 100644 --- a/src/Indicator.vala +++ b/src/Indicator.vala @@ -92,12 +92,10 @@ public class Notifications.Indicator : Wingpanel.Indicator { not_disturb_switch.add_css_class (Granite.STYLE_CLASS_H4_LABEL); var dnd_switch_separator = new Gtk.Separator (Gtk.Orientation.HORIZONTAL) { - margin_top = 3, - margin_bottom = 3 + margin_top = 3 }; var clear_all_btn_separator = new Gtk.Separator (Gtk.Orientation.HORIZONTAL) { - margin_top = 3, margin_bottom = 3 }; diff --git a/src/Widgets/NotificationsList.vala b/src/Widgets/NotificationsList.vala index 2b1bde1c..05de82bb 100644 --- a/src/Widgets/NotificationsList.vala +++ b/src/Widgets/NotificationsList.vala @@ -43,6 +43,8 @@ public class Notifications.NotificationsList : Granite.Bin { var listbox = new Gtk.ListBox () { activate_on_single_click = true, + margin_top = 3, + margin_bottom = 3, selection_mode = NONE }; listbox.bind_model (sort_list_model, create_widget_func);