menu - close search window if the warning popup is showed at enventor exit.

This commit is contained in:
ChunEon Park 2014-03-07 00:46:47 +09:00
parent 94be5e3753
commit c77cf29ec2
1 changed files with 4 additions and 1 deletions

View File

@ -1108,7 +1108,10 @@ menu_exit()
{
menu_data *md = g_md;
if (edit_changed_get(md->ed))
warning_layout_create(md, exit_yes_btn_cb, exit_save_btn_cb);
{
search_close();
warning_layout_create(md, exit_yes_btn_cb, exit_save_btn_cb);
}
else
elm_exit();
}