diff options
Diffstat (limited to 'src/themes/coco')
-rw-r--r-- | src/themes/coco/coco-theme.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/themes/coco/coco-theme.c b/src/themes/coco/coco-theme.c index dbed838..e95ff0a 100644 --- a/src/themes/coco/coco-theme.c +++ b/src/themes/coco/coco-theme.c @@ -418,6 +418,12 @@ create_notification(UrlClickedCb url_clicked) gtk_widget_show(main_vbox); gtk_container_add (GTK_CONTAINER (win), main_vbox); + #if GTK_CHECK_VERSION (4,0,0) + gtk_widget_add_css_class (main_vbox, "notification-box"); + #else + gtk_style_context_add_class (gtk_widget_get_style_context (main_vbox), "notification-box"); + #endif + g_signal_connect (G_OBJECT (main_vbox), "draw", G_CALLBACK (on_draw), windata); |