diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2013-05-24 09:21:27 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2013-05-24 09:21:27 +0000 |
commit | 69938473c2d34c8cf0b0aed52da8ecd65a2306b1 (patch) | |
tree | d5f33f811f27e78217394cab1b0d5eacee8488b9 | |
parent | f3f74e04fe3737c15979c477bc44e888d5e2c3c9 (diff) |
raise compose window when the external editor exits.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3262 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/compose.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -4,6 +4,11 @@ 2013-05-24 + * src/compose.c: compose_ext_editor_child_exit(): raise compose + window when the external editor exits (thanks to Steve Kirkendall). + +2013-05-24 + * manual/ja/sylpheed.sgml: updated Japanese manual. 2013-05-23 diff --git a/src/compose.c b/src/compose.c index 0dbf56e1..726790a9 100644 --- a/src/compose.c +++ b/src/compose.c @@ -6917,6 +6917,7 @@ static void compose_ext_editor_child_exit(GPid pid, gint status, gpointer data) FILE_OP_ERROR(compose->exteditor_file, "unlink"); compose_set_ext_editor_sensitive(compose, TRUE); + gtk_window_present(GTK_WINDOW(compose->window)); g_free(compose->exteditor_file); compose->exteditor_file = NULL; |