From b3e92e4213c79a5128abf94ce1885ac571b89716 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Sun, 30 Dec 2007 15:26:33 +0000 Subject: [PATCH] Give the entry widget focus when showing the entry dialog. SVN revision: 33297 --- src/bin/e_entry_dialog.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_entry_dialog.c b/src/bin/e_entry_dialog.c index 999c1a843..d36a19a02 100644 --- a/src/bin/e_entry_dialog.c +++ b/src/bin/e_entry_dialog.c @@ -60,6 +60,7 @@ e_entry_dialog_show(const char *title, const char *icon, const char *text, e_win_centered_set(dia->win, 1); e_dialog_show(dia); + e_widget_focus_set(ed->entry, 1); return ed; }