diff options
| author | Eduard Braun <eduard.braun2@gmx.de> | 2018-01-04 20:41:51 +0000 |
|---|---|---|
| committer | Eduard Braun <eduard.braun2@gmx.de> | 2018-01-04 20:41:51 +0000 |
| commit | 0d0699f723e09fbf040a32c7cf11a0a50fe7d77a (patch) | |
| tree | 8dd50b6e62280b645909284b3d546c7fe8bb9689 /src | |
| parent | XML Editor: Minimum height for attribute entry (diff) | |
| download | inkscape-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.cpp | 2 |
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 |
