summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEduard Braun <eduard.braun2@gmx.de>2018-01-04 20:41:51 +0000
committerEduard Braun <eduard.braun2@gmx.de>2018-01-04 20:41:51 +0000
commit0d0699f723e09fbf040a32c7cf11a0a50fe7d77a (patch)
tree8dd50b6e62280b645909284b3d546c7fe8bb9689 /src
parentXML Editor: Minimum height for attribute entry (diff)
downloadinkscape-0d0699f723e09fbf040a32c7cf11a0a50fe7d77a.tar.gz
inkscape-0d0699f723e09fbf040a32c7cf11a0a50fe7d77a.zip
Parsing errors in application CSS should not be fatal
Fixed bug: - https://bugs.launchpad.net/inkscape/+bug/1740850
Diffstat (limited to 'src')
-rw-r--r--src/inkscape.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inkscape.cpp b/src/inkscape.cpp
index b30d06168..996f72420 100644
--- a/src/inkscape.cpp
+++ b/src/inkscape.cpp
@@ -406,7 +406,7 @@ Application::add_style_sheet()
// Gtk::CssProviderError not defined until 3.16.
catch (const Gtk::CssProviderError& ex)
{
- g_error("CSSProviderError::load_from_path(): %s\n(%s)",
+ g_critical("CSSProviderError::load_from_path(): failed to load '%s'\n(%s)",
style.c_str(), ex.what().c_str());
}
#else