diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-05-28 15:56:31 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-05-28 15:59:52 +0200 |
commit | 2ac2b17251be51778963e6ced0b83e461d175d01 (patch) | |
tree | 188d9b54c389a64740f6c845e7c4a8d795ef9033 /gnu/packages/animation.scm | |
parent | 802907e423121702d726636961065c7791a3b4d5 (diff) | |
download | patches-2ac2b17251be51778963e6ced0b83e461d175d01.tar patches-2ac2b17251be51778963e6ced0b83e461d175d01.tar.gz |
gnu: synfigstudio: Fix UI bug.
* gnu/packages/patches/synfigstudio-fix-ui-with-gtk3.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add patch.
* gnu/packages/animation.scm (synfigstudio)[source]: Apply patch.
Diffstat (limited to 'gnu/packages/animation.scm')
-rw-r--r-- | gnu/packages/animation.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/animation.scm b/gnu/packages/animation.scm index 0f37ea55d5..cbbfa6ed4a 100644 --- a/gnu/packages/animation.scm +++ b/gnu/packages/animation.scm @@ -143,7 +143,9 @@ for tweening, preventing the need to hand-draw each frame.") (substitute* "src/synfigapp/pluginmanager.cpp" (("xmlpp::Node\\* n =") "const xmlpp::Node* n =") (("xmlpp::Node::NodeList") "xmlpp::Node::const_NodeList")) - #t)))) + #t)) + (patches + (search-patches "synfigstudio-fix-ui-with-gtk3.patch")))) (build-system gnu-build-system) (inputs `(("gtkmm" ,gtkmm) |