comparison src/screen.c @ 14428:aab5947be7c5 v8.1.0228

patch 8.1.0228: dropping files is ignored while Vim is busy commit https://github.com/vim/vim/commit/92d147be959e689f8f58fd5d138a31835e160289 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 29 17:35:23 2018 +0200 patch 8.1.0228: dropping files is ignored while Vim is busy Problem: Dropping files is ignored while Vim is busy. Solution: Postpone the effect of dropping files until it's safe.
author Christian Brabandt <cb@256bit.org>
date Sun, 29 Jul 2018 17:45:05 +0200
parents 0a69e6e708f9
children 3648e74dd523
comparison
equal deleted inserted replaced
14427:a6055273c735 14428:aab5947be7c5
524 gui_may_resize_shell(); 524 gui_may_resize_shell();
525 #endif 525 #endif
526 #ifdef FEAT_TERMINAL 526 #ifdef FEAT_TERMINAL
527 term_check_channel_closed_recently(); 527 term_check_channel_closed_recently();
528 #endif 528 #endif
529
530 #ifdef HAVE_DROP_FILE
531 // If handle_drop() was called while updating_screen was TRUE need to
532 // handle the drop now.
533 handle_any_postponed_drop();
534 #endif
529 } 535 }
530 536
531 /* 537 /*
532 * Update all windows that are editing the current buffer. 538 * Update all windows that are editing the current buffer.
533 */ 539 */