mirror of https://github.com/GNOME/gimp.git
Bug 772789 - Mac DMG 2.8.18 gets plug-ins path wrong, can't open JPEG files
Don't migrate any paths from an older gimprc. This unfortunately kills all manually added paths, but makes sure all paths default to the files of the new GIMP version, could be improved by parsing the path and replacing only the right elements.
This commit is contained in:
parent
b249a998aa
commit
2a9b20d384
|
@ -586,14 +586,15 @@ user_update_controllerrc (const GMatchInfo *matched_value,
|
|||
}
|
||||
|
||||
#define GIMPRC_UPDATE_PATTERN \
|
||||
"\\(theme [^)]*\\)"
|
||||
"\\(theme [^)]*\\)" "|" \
|
||||
"\\(.*-path [^)]*\\)"
|
||||
|
||||
static gboolean
|
||||
user_update_gimprc (const GMatchInfo *matched_value,
|
||||
GString *new_value,
|
||||
gpointer data)
|
||||
{
|
||||
/* Do not migrate themes from GIMP < 2.10. */
|
||||
/* Do not migrate paths and themes from GIMP < 2.10. */
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue