1
0
mirror of https://github.com/MidnightCommander/mc synced 2025-03-11 18:32:53 +03:00

Ticket : mcedit should not be closed on Ctrl-G.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2016-03-05 11:53:00 +03:00
parent ea2a33fbe5
commit 9a617a6d5a

@ -742,13 +742,14 @@ edit_dialog_command_execute (WDialog * h, long command)
break;
case CK_Quit:
case CK_Cancel:
/* don't close editor due to SIGINT, but stop move/resize window */
{
Widget *w = WIDGET (h->current->data);
if (!edit_widget_is_editor (w) || ((WEdit *) w)->drag_state == MCEDIT_DRAG_NORMAL)
dlg_stop (h);
else
if (edit_widget_is_editor (w) && ((WEdit *) w)->drag_state != MCEDIT_DRAG_NORMAL)
edit_restore_size ((WEdit *) w);
else if (command == CK_Quit)
dlg_stop (h);
}
break;
case CK_About: