diff options
| author | Jasper van de Gronde <jasper.vandegronde@gmail.com> | 2009-01-10 16:25:06 +0000 |
|---|---|---|
| committer | jaspervdg <jaspervdg@users.sourceforge.net> | 2009-01-10 16:25:06 +0000 |
| commit | a9b31d449004b5d22cc9257de3ee295f42414e46 (patch) | |
| tree | f65d52dd25b2cf760b737b38fe1818323ee0bac6 /src/main.cpp | |
| parent | * [INTL: zh_TW] update by Wei-Lun Chao (diff) | |
| download | inkscape-a9b31d449004b5d22cc9257de3ee295f42414e46.tar.gz inkscape-a9b31d449004b5d22cc9257de3ee295f42414e46.zip | |
Fixes rendering of feImage (using bitmaps) by preventing the error "Unable to wrap GdkPixbuf".
(bzr r7106)
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index eb1a0b103..89590a5f4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -562,6 +562,9 @@ main(int argc, char **argv) rt.setPathInfo(); #endif + // Prevents errors like "Unable to wrap GdkPixbuf..." (in nr-filter-image.cpp for example) + Gtk::Main::init_gtkmm_internals(); + // Bug #197475 set_extensions_env(); |
