diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2019-04-10 12:07:25 +0000 |
|---|---|---|
| committer | Tavmjong Bah <tavmjong@free.fr> | 2019-04-10 12:07:25 +0000 |
| commit | 5b29da356b6ab47fcd917b68933609856965dbd4 (patch) | |
| tree | c8bab782ea63ee8ee3f2b6c5fa1216708eea53a4 /src/inkscape.cpp | |
| parent | Add build pipeline for macOS (diff) | |
| download | inkscape-5b29da356b6ab47fcd917b68933609856965dbd4.tar.gz inkscape-5b29da356b6ab47fcd917b68933609856965dbd4.zip | |
Fix segfault when inkscape is started more than once in single app mode.
Fixes Inbox issue #299.
Diffstat (limited to 'src/inkscape.cpp')
| -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 928d65d07..3d4866966 100644 --- a/src/inkscape.cpp +++ b/src/inkscape.cpp @@ -166,7 +166,7 @@ Application::create(const char *argv0, bool use_gui) if (!Application::exists()) { new Application(argv0, use_gui); } else { - g_assert_not_reached(); + // g_assert_not_reached(); Can happen with InkscapeApplication } } |
