Problem: GTK4 GUI tabline is not updated
Solution: Call gui_mch_update() in gui_mch_show_tabline(), matching the
GTK3 GUI (Foxe Chen).
related: #20633
Signed-off-by: Foxe Chen <chen.foxe@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
void
gui_mch_show_tabline(int showit)
{
- if (gui.tabline != NULL)
- gtk_widget_set_visible(gui.tabline, showit);
+ if (gui.tabline == NULL)
+ return;
+ gtk_widget_set_visible(gui.tabline, showit);
+ gui_mch_update();
}
int
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 730,
/**/
729,
/**/