allow to move a text layer using the cursor keys.

2004-06-04  Sven Neumann  <sven@gimp.org>

	* app/tools/gimptexttool.c (gimp_text_tool_class_init): allow to
	move a text layer using the cursor keys.
This commit is contained in:
Sven Neumann 2004-06-04 17:51:32 +00:00 committed by Sven Neumann
parent 8c2fbfc2f6
commit de1ed0a379
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2004-06-04 Sven Neumann <sven@gimp.org>
* app/tools/gimptexttool.c (gimp_text_tool_class_init): allow to
move a text layer using the cursor keys.
2004-06-04 Michael Natterer <mitch@gimp.org>
* cursors/*.xbm: removed...

View file

@ -58,6 +58,7 @@
#include "display/gimpdisplay.h"
#include "gimpeditselectiontool.h"
#include "gimptextoptions.h"
#include "gimptexttool.h"
#include "gimptoolcontrol.h"
@ -191,6 +192,7 @@ gimp_text_tool_class_init (GimpTextToolClass *klass)
tool_class->control = gimp_text_tool_control;
tool_class->button_press = gimp_text_tool_button_press;
tool_class->arrow_key = gimp_edit_selection_tool_arrow_key;
tool_class->cursor_update = gimp_text_tool_cursor_update;
}