Changed the priority of ALT vs. CTRL. Resolves an small issue with

2003-10-22 Simon Budig  <simon@gimp.org>

        * app/tools/gimpvectortool.c: Changed the priority
        of ALT vs. CTRL. Resolves an small issue with (broken)
        window managers that grab ALT. Implements the suggestion
        from Raymond Ostertag in bug #124971.
This commit is contained in:
Simon Budig 2003-10-22 20:55:45 +00:00 committed by Simon Budig
parent 9db407dfa5
commit 1f3702a575
2 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,10 @@
2003-10-22 Simon Budig <simon@gimp.org>
* app/tools/gimpvectortool.c: Changed the priority
of ALT vs. CTRL. Resolves an small issue with (broken)
window managers that grab ALT. Implements the suggestion
from Raymond Ostertag in bug #124971.
2003-10-22 Dave Neary <bolsh@gimp.org>
* plug-ins/gfig/gfig.c: Bumped version number to 2.0. Closes

View File

@ -824,14 +824,14 @@ gimp_vector_tool_modifier_key (GimpTool *tool,
}
}
if (state & INSDEL_MASK)
{
button_mode = GIMP_VECTOR_MODE_EDIT;
}
else if (state & MOVE_MASK)
if (state & MOVE_MASK)
{
button_mode = GIMP_VECTOR_MODE_MOVE;
}
else if (state & INSDEL_MASK)
{
button_mode = GIMP_VECTOR_MODE_EDIT;
}
if (button_mode != options->edit_mode)
{