diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-03-22 06:40:44 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-03-22 06:40:44 +0100 |
commit | 8e1c5a834469d804d28ee8ab2cbe2da8e600a789 (patch) | |
tree | b9771456583eaead893cfd8f02e680b58a3da970 /src/main.vala | |
parent | 80a5f2d8b095e895a5424f90b2ce4684d94c1a32 (diff) | |
parent | 3253d99365813f2d2ffd05e10cbb8c11f53d746e (diff) |
Merge tag 'upstream/0.26.0'
Upstream version 0.26.0
Diffstat (limited to 'src/main.vala')
-rw-r--r-- | src/main.vala | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/main.vala b/src/main.vala index 6941734..0755f62 100644 --- a/src/main.vala +++ b/src/main.vala @@ -105,8 +105,7 @@ void library_exec(string[] mounts) { progress_dialog.update_display_every(100); progress_dialog.set_minimum_on_screen_time_msec(250); try { - string icon_path = AppDirs.get_resources_dir().get_child("icons").get_child("shotwell.svg").get_path(); - progress_dialog.icon = new Gdk.Pixbuf.from_file(icon_path); + progress_dialog.icon = new Gdk.Pixbuf.from_resource("/org/gnome/Shotwell/icons/shotwell.svg"); } catch (Error err) { debug("Warning - could not load application icon for loading window: %s", err.message); } @@ -323,6 +322,11 @@ void main(string[] args) { // parser is initialized in a thread-safe fashion; please see // http://redmine.yorba.org/issues/4120 for details. GExiv2.initialize(); + GExiv2.log_use_glib_logging(); + + // Set GExiv2 log level to DEBUG, filtering will be done through Shotwell + // logging mechanisms + GExiv2.log_set_level(GExiv2.LogLevel.DEBUG); // following the GIO programming guidelines at http://developer.gnome.org/gio/2.26/ch03.html, // set the GSETTINGS_SCHEMA_DIR environment variable to allow us to load GSettings schemas from |