hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=e81058d2f8d7809a76c4912fffc0d14b54ad8f35
commit e81058d2f8d7809a76c4912fffc0d14b54ad8f35 Author: ChunEon Park <[email protected]> Date: Sat Aug 2 16:59:37 2014 +0900 editor: display redo/undo message. --- src/bin/edc_editor.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bin/edc_editor.c b/src/bin/edc_editor.c index 3d263ba..994a4ac 100644 --- a/src/bin/edc_editor.c +++ b/src/bin/edc_editor.c @@ -880,6 +880,9 @@ edit_redoundo(edit_data *ed, Eina_Bool undo) else lines = redoundo_redo(ed->rd, &changed); if (!changed) return; + if (undo) stats_info_msg_update("Undo text."); + else stats_info_msg_update("Redo text."); + if (lines > 0) edit_line_increase(ed, lines); else edit_line_decrease(ed, abs(lines)); --
