# HG changeset patch # User vimboss # Date 1164730618 0 # Node ID f66abfa335bb76d20f2a375f148fb7705bfde287 # Parent 10d7ebdbe8a3a9787360b21a9836c6bae6a6a7a2 updated for version 7.0-170 diff --git a/src/gui_w48.c b/src/gui_w48.c --- a/src/gui_w48.c +++ b/src/gui_w48.c @@ -2405,8 +2405,7 @@ gui_mch_update_tabline(void) tiw.mask = TCIF_TEXT; tiw.iImage = -1; tiw.pszText = wstr; - SendMessage(s_tabhwnd, TCM_INSERTITEMW, (WPARAM)nr, - (LPARAM)&tiw); + SendMessage(s_tabhwnd, TCM_SETITEMW, (WPARAM)nr, (LPARAM)&tiw); vim_free(wstr); } } @@ -3033,13 +3032,25 @@ gui_mch_init_font(char_u *font_name, int return OK; } +#ifndef WPF_RESTORETOMAXIMIZED +# define WPF_RESTORETOMAXIMIZED 2 /* just in case someone doesn't have it */ +#endif + /* * Return TRUE if the GUI window is maximized, filling the whole screen. */ int gui_mch_maximized() { - return IsZoomed(s_hwnd); + WINDOWPLACEMENT wp; + + wp.length = sizeof(WINDOWPLACEMENT); + if (GetWindowPlacement(s_hwnd, &wp)) + return wp.showCmd == SW_SHOWMAXIMIZED + || (wp.showCmd == SW_SHOWMINIMIZED + && wp.flags == WPF_RESTORETOMAXIMIZED); + + return 0; } /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 170, +/**/ 169, /**/ 168,