[gimp] Bug 668447 - Rotate tool: wrong keyboard bindings to rotate image interactively
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] Bug 668447 - Rotate tool: wrong keyboard bindings to rotate image interactively
- Date: Sun, 22 Jan 2012 19:47:33 +0000 (UTC)
commit a77809a13bac064edeb6f1969e18fcc93411d5d5
Author: Michael Natterer <mitch gimp org>
Date: Sun Jan 22 20:45:42 2012 +0100
Bug 668447 - Rotate tool: wrong keyboard bindings to rotate image interactively
Make "Right" rotate right and "Left" rotate left.
app/tools/gimprotatetool.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/app/tools/gimprotatetool.c b/app/tools/gimprotatetool.c
index a1a7d16..00e2cf5 100644
--- a/app/tools/gimprotatetool.c
+++ b/app/tools/gimprotatetool.c
@@ -150,11 +150,11 @@ gimp_rotate_tool_key_press (GimpTool *tool,
gtk_spin_button_spin (angle_spin, GTK_SPIN_STEP_BACKWARD, 0.0);
return TRUE;
- case GDK_KEY_Left:
+ case GDK_KEY_Right:
gtk_spin_button_spin (angle_spin, GTK_SPIN_PAGE_FORWARD, 0.0);
return TRUE;
- case GDK_KEY_Right:
+ case GDK_KEY_Left:
gtk_spin_button_spin (angle_spin, GTK_SPIN_PAGE_BACKWARD, 0.0);
return TRUE;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]