[gnome-games/wip/exalm/gtk4: 26/29] application: Don't catch errors from gtk_css_provider_load_from_file()



commit 39dd2e9c782086c2695a78b107a44d9e33113613
Author: Alexander Mikhaylenko <exalm7659 gmail com>
Date:   Wed Aug 1 20:42:52 2018 +0500

    application: Don't catch errors from gtk_css_provider_load_from_file()
    
    Doing so results in warning in gtk4.

 src/ui/application.vala | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)
---
diff --git a/src/ui/application.vala b/src/ui/application.vala
index 53da7737..e9f3cd4c 100644
--- a/src/ui/application.vala
+++ b/src/ui/application.vala
@@ -409,12 +409,10 @@ public class Games.Application : Gtk.Application {
 
        private static Gtk.CssProvider load_css (string css) {
                var provider = new Gtk.CssProvider ();
-               try {
-                       var file = File.new_for_uri ("resource:///org/gnome/Games/" + css);
-                       provider.load_from_file (file);
-               } catch (GLib.Error e) {
-                       warning ("Loading CSS file ā€œ%sā€ failed: %s", css, e.message);
-               }
+
+               var file = File.new_for_uri ("resource:///org/gnome/Games/" + css);
+               provider.load_from_file (file);
+
                return provider;
        }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]