mirror of
https://github.com/vim/vim.git
synced 2025-11-13 22:54:27 -05:00
patch 8.0.1278: GUI window always resizes when adding scrollbar
Problem: GUI window always resizes when adding/removing a scrollbar,
toolbar, etc.
Solution: Add the 'k' flag in 'guioptions' to keep the GUI window size and
change the number of lines/columns instead. (Ychin, closes #703)
This commit is contained in:
@@ -2938,7 +2938,7 @@ mainwin_screen_changed_cb(GtkWidget *widget,
|
||||
if (gui.norm_font != NULL)
|
||||
{
|
||||
gui_mch_init_font(p_guifont, FALSE);
|
||||
gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
|
||||
gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4909,8 +4909,9 @@ gui_mch_unmaximize(void)
|
||||
}
|
||||
|
||||
/*
|
||||
* Called when the font changed while the window is maximized. Compute the
|
||||
* new Rows and Columns. This is like resizing the window.
|
||||
* Called when the font changed while the window is maximized or GO_KEEPWINSIZE
|
||||
* is set. Compute the new Rows and Columns. This is like resizing the
|
||||
* window.
|
||||
*/
|
||||
void
|
||||
gui_mch_newfont(void)
|
||||
|
||||
Reference in New Issue
Block a user