summaryrefslogtreecommitdiff
path: root/src/themes/standard
diff options
context:
space:
mode:
authorFabrice Creuzot <[email protected]>2025-02-27 16:39:05 +0100
committerLuke from DC <[email protected]>2025-03-11 05:48:30 +0000
commite7428ef23e052dcd43101f80fde88b2c76684839 (patch)
tree4212f565624585a697063c4af3b61894b4386dcc /src/themes/standard
parent301c586d8ffefb525a8702eca4973a050043404a (diff)
downloadmate-notification-daemon-e7428ef23e052dcd43101f80fde88b2c76684839.tar.bz2
mate-notification-daemon-e7428ef23e052dcd43101f80fde88b2c76684839.tar.xz
Add also theme name
Diffstat (limited to 'src/themes/standard')
-rw-r--r--src/themes/standard/theme.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/themes/standard/theme.c b/src/themes/standard/theme.c
index 7b4f267..5e065f5 100644
--- a/src/themes/standard/theme.c
+++ b/src/themes/standard/theme.c
@@ -698,8 +698,10 @@ GtkWindow* create_notification(UrlClickedCb url_clicked)
#if GTK_CHECK_VERSION (4,0,0)
gtk_widget_add_css_class (main_vbox, "notification-box");
+ gtk_widget_add_css_class (main_vbox, "default-theme");
#else
gtk_style_context_add_class (gtk_widget_get_style_context (main_vbox), "notification-box");
+ gtk_style_context_add_class (gtk_widget_get_style_context (main_vbox), "default-theme");
#endif
g_signal_connect (G_OBJECT (main_vbox), "draw", G_CALLBACK (on_draw), windata);