mirror of https://github.com/GNOME/gimp.git
Fix moving back by words
This commit is contained in:
parent
a235998165
commit
6e57a67218
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue