mirror of https://github.com/GNOME/gimp.git
plug-ins: Remove bogus ) in file-xmc.c
This commit is contained in:
parent
a68963ab16
commit
e942d1e913
|
@ -1509,14 +1509,14 @@ save_image (const gchar *filename,
|
|||
if (drawable->width > MAX_SAVE_DIMENSION)
|
||||
{
|
||||
g_set_error (error, 0, 0,
|
||||
_("Width of '%s' is too large. Please reduce more than %dpx)"),
|
||||
_("Width of '%s' is too large. Please reduce more than %dpx."),
|
||||
gimp_any_to_utf8 (framename, -1, NULL), MAX_SAVE_DIMENSION);
|
||||
return FALSE;
|
||||
}
|
||||
if (drawable->height > MAX_SAVE_DIMENSION)
|
||||
{
|
||||
g_set_error (error, 0, 0,
|
||||
_("Height of '%s' is too large. Please reduce more than %dpx)"),
|
||||
_("Height of '%s' is too large. Please reduce more than %dpx."),
|
||||
gimp_any_to_utf8 (framename, -1, NULL), MAX_SAVE_DIMENSION);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue