[gimp] Bug 747389 - Adjust maximum zoom for animation-play plugin up slightly
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] Bug 747389 - Adjust maximum zoom for animation-play plugin up slightly
- Date: Tue, 28 Apr 2015 03:29:43 +0000 (UTC)
commit 97bbd6330d14296e9f71b42a540776e96f74a448
Author: David Gowers <finticemo gmail com>
Date: Mon Apr 6 12:12:28 2015 +0930
Bug 747389 - Adjust maximum zoom for animation-play plugin up slightly
Change maximum zoom from 300% to 400%, improves usability for sprite
or tile animations.
plug-ins/common/animation-play.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/plug-ins/common/animation-play.c b/plug-ins/common/animation-play.c
index dc76c07..dbfabf6 100644
--- a/plug-ins/common/animation-play.c
+++ b/plug-ins/common/animation-play.c
@@ -1433,8 +1433,8 @@ get_scale (gint index)
gdouble zoom = g_strtod (active_text, NULL);
/* Negative scales are inconsistent. And we want to avoid huge scaling. */
- if (zoom > 300.0)
- zoom = 300.0;
+ if (zoom > 400.0)
+ zoom = 400.0;
else if (zoom <= 50.0)
/* FIXME: scales under 0.5 are broken. See bug 690265. */
zoom = 50.1;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]