From: Daniel Carl <danielcarl@gmx.de>
Date: Mon, 21 Jan 2019 22:16:14 +0000 (+0100)
Subject: Replace deprecated gtk_css_provider_get_default.
X-Git-Url: https://git.owens.tech/about.html/about.html/git?a=commitdiff_plain;h=9bc5f2e9d80b9e496dcc40e66074732483291558;p=vimb.git

Replace deprecated gtk_css_provider_get_default.
---

diff --git a/src/main.c b/src/main.c
index dd5370c..71a4007 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1702,7 +1702,7 @@ static void vimb_setup(void)
     vb_mode_add('p', pass_enter, pass_leave, pass_keypress, NULL);
 
     /* Prepare the style provider to be used for the clients and completion. */
-    vb.style_provider = gtk_css_provider_get_default();
+    vb.style_provider = gtk_css_provider_new();
 }
 
 /**