[gimp] gimp: macOS: fix for file export dialogs GIF and PNG. Authored by @pietervo, and he should be credit



commit c264f0b7055ec392328d9565a231dbaec6da6ae8
Author: Pieter van Oostrum <pieter vanoostrum org>
Date:   Sun Jan 10 16:48:18 2021 -0500

    gimp: macOS: fix for file export dialogs GIF and PNG. Authored by @pietervo, and he should be credited 
with this.

 libgimpbase/gimpenv.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
---
diff --git a/libgimpbase/gimpenv.c b/libgimpbase/gimpenv.c
index 41bf682200..720dab3cf6 100644
--- a/libgimpbase/gimpenv.c
+++ b/libgimpbase/gimpenv.c
@@ -434,6 +434,20 @@ gimp_installation_directory (void)
         g_free (tmp);
         g_free (tmp2);
       }
+    else if (! strcmp (g_path_get_basename (dirname), "plug-ins"))
+      {
+        /*  same for plug-ins in subdirectory, go three levels up from prefix/lib/gimp/x.y  */
+
+        gchar *tmp  = g_path_get_dirname (dirname);
+        gchar *tmp2 = g_path_get_dirname (tmp);
+        gchar *tmp3 = g_path_get_dirname (tmp2);
+
+        toplevel = g_path_get_dirname (tmp3);
+
+        g_free (tmp);
+        g_free (tmp2);
+        g_free (tmp3);
+      }
     else
       {
         /*  if none of the above match, we assume that we are really in a bundle  */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]