Skip to content

Commit 2a9f2b5

Browse files
authored
Merge pull request #689 from ichizok/fix/redraw_after_callback
Fix: redraw_after_callback should force flush
2 parents 9289901 + 5838d3f commit 2a9f2b5

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/screen.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -476,6 +476,10 @@ redraw_after_callback(int call_update_screen)
476476
else
477477
#endif
478478
out_flush();
479+
#ifdef FEAT_GUI_MACVIM
480+
if (gui.in_use)
481+
gui_macvim_force_flush();
482+
#endif
479483

480484
--redrawing_for_callback;
481485
}

0 commit comments

Comments
 (0)