Modify behaviour of the magnify tool to always change the zoom factor by

2004-01-09  Dave Neary  <bolsh@gimp.org>

        * app/display/gimpdisplayshell-scale.c: Modify behaviour of
        the magnify tool to always change the zoom factor by the
        golden ratio, rather than modify the numerator and denominator
        directly. Fixes bug #124073.
This commit is contained in:
Dave Neary
2004-01-09 21:15:24 +00:00
committed by David Neary
parent 16e8ee96bb
commit a1e84dfa1c
3 changed files with 28 additions and 15 deletions

View File

@ -253,6 +253,12 @@ gimp_display_shell_format_title (GimpDisplayShell *shell,
format++;
break;
case 'B': /* dirty flag (long) */
if (gimage->dirty)
i += print (title, title_len, i, "%s",
_("(modified)"));
break;
case 'C': /* clean flag */
if (format[1] == 0)
{