From 6e57a6721873bf87c09a2218256d0e84fda08bf2 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Tue, 23 Jun 2009 00:18:31 +0200 Subject: [PATCH] Fix moving back by words --- app/tools/gimptexttool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/tools/gimptexttool.c b/app/tools/gimptexttool.c index 1479a76bbb..917dcc52a8 100644 --- a/app/tools/gimptexttool.c +++ b/app/tools/gimptexttool.c @@ -1472,7 +1472,7 @@ gimp_text_tool_move_cursor (GimpTextTool *text_tool, case GTK_MOVEMENT_WORDS: if (count < 0) { - gtk_text_iter_backward_visible_word_starts (&cursor, count); + gtk_text_iter_backward_visible_word_starts (&cursor, -count); } else if (count > 0) {