summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2008-12-03 17:50:45 +0000
committervimboss <devnull@localhost>2008-12-03 17:50:45 +0000
commit9fe35712c4f315af44ddf5eae4465fb231a47cbc (patch)
tree031c1f94f3920d6b8be76f0712bf713181347c84
parent059687a20b6ad1c119ef91506e32a8733e73e5eb (diff)
downloadvim-9fe35712c4f315af44ddf5eae4465fb231a47cbc.tar.gz
updated for version 7.2-065v7.2.065v7-2-065
-rw-r--r--src/gui.c28
-rw-r--r--src/version.c2
2 files changed, 18 insertions, 12 deletions
diff --git a/src/gui.c b/src/gui.c
index b937189f..bcc3c68b 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -3241,7 +3241,7 @@ gui_init_which_components(oldval)
i = Rows;
gui_update_tabline();
Rows = i;
- need_set_size = RESIZE_VERT;
+ need_set_size |= RESIZE_VERT;
if (using_tabline)
fix_size = TRUE;
if (!gui_use_tabline())
@@ -3275,9 +3275,9 @@ gui_init_which_components(oldval)
if (gui.which_scrollbars[i] != prev_which_scrollbars[i])
{
if (i == SBAR_BOTTOM)
- need_set_size = RESIZE_VERT;
+ need_set_size |= RESIZE_VERT;
else
- need_set_size = RESIZE_HOR;
+ need_set_size |= RESIZE_HOR;
if (gui.which_scrollbars[i])
fix_size = TRUE;
}
@@ -3297,7 +3297,7 @@ gui_init_which_components(oldval)
gui_mch_enable_menu(gui.menu_is_active);
Rows = i;
prev_menu_is_active = gui.menu_is_active;
- need_set_size = RESIZE_VERT;
+ need_set_size |= RESIZE_VERT;
if (gui.menu_is_active)
fix_size = TRUE;
}
@@ -3308,7 +3308,7 @@ gui_init_which_components(oldval)
{
gui_mch_show_toolbar(using_toolbar);
prev_toolbar = using_toolbar;
- need_set_size = RESIZE_VERT;
+ need_set_size |= RESIZE_VERT;
if (using_toolbar)
fix_size = TRUE;
}
@@ -3318,7 +3318,7 @@ gui_init_which_components(oldval)
{
gui_mch_enable_footer(using_footer);
prev_footer = using_footer;
- need_set_size = RESIZE_VERT;
+ need_set_size |= RESIZE_VERT;
if (using_footer)
fix_size = TRUE;
}
@@ -3330,10 +3330,11 @@ gui_init_which_components(oldval)
prev_tearoff = using_tearoff;
}
#endif
- if (need_set_size)
+ if (need_set_size != 0)
{
#ifdef FEAT_GUI_GTK
- long c = Columns;
+ long prev_Columns = Columns;
+ long prev_Rows = Rows;
#endif
/* Adjust the size of the window to make the text area keep the
* same size and to avoid that part of our window is off-screen
@@ -3349,11 +3350,14 @@ gui_init_which_components(oldval)
* If you remove this, please test this command for resizing
* effects (with optional left scrollbar): ":vsp|q|vsp|q|vsp|q".
* Don't do this while starting up though.
- * And don't change Rows, it may have be reduced intentionally
- * when adding menu/toolbar/tabline. */
- if (!gui.starting)
+ * Don't change Rows when adding menu/toolbar/tabline.
+ * Don't change Columns when adding vertical toolbar. */
+ if (!gui.starting && need_set_size != (RESIZE_VERT | RESIZE_HOR))
(void)char_avail();
- Columns = c;
+ if ((need_set_size & RESIZE_VERT) == 0)
+ Rows = prev_Rows;
+ if ((need_set_size & RESIZE_HOR) == 0)
+ Columns = prev_Columns;
#endif
}
#ifdef FEAT_WINDOWS
diff --git a/src/version.c b/src/version.c
index d50b80d9..000aa18e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -677,6 +677,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 65,
+/**/
64,
/**/
63,