Merge branch '3150_achown_list_esc'

* 3150_achown_list_esc:
  Ticket #3150: achown: escape on user list should not accept value.
This commit is contained in:
Andrew Borodin 2014-02-07 09:23:04 +04:00
commit 38629e21de

View File

@ -369,6 +369,8 @@ do_enter_key (WDialog * h, int f_pos)
result = dlg_run (chl_dlg);
if (result != B_CANCEL)
{
if (b_pos != chl_list->pos)
{
gboolean ok = FALSE;
@ -416,6 +418,8 @@ do_enter_key (WDialog * h, int f_pos)
dlg_one_down (ch_dlg);
f_pos++;
}
}
/* Here we used to redraw the window */
dlg_destroy (chl_dlg);
}