home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 6.0.122 < prev    next >
Encoding:
Internet Message Format  |  2002-01-08  |  2.2 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.122
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. MIME-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.0.122 (extra)
  11. Problem:    Win16: Same resize problems as patch 6.0.117 fixed for Win32.  And
  12.         dialog textfield problem from patch 6.0.115.
  13. Solution:   Set old_menu_height only when used.  Add ES_AUTOHSCROLL flag.
  14.         (Vince Negri)
  15. Files:        src/gui_w16.c
  16.  
  17.  
  18. *** ../vim60.121/src/gui_w16.c    Wed Sep 19 14:44:12 2001
  19. --- src/gui_w16.c    Wed Jan  9 16:17:08 2002
  20. ***************
  21. *** 123,131 ****
  22.       }
  23.   
  24.       if (fix_window && menu_height != old_menu_height)
  25.       gui_set_shellsize(FALSE, FALSE);
  26.   
  27. -     old_menu_height = menu_height;
  28.       return menu_height;
  29.   }
  30.   #endif /*FEAT_MENU*/
  31. --- 123,133 ----
  32.       }
  33.   
  34.       if (fix_window && menu_height != old_menu_height)
  35. +     {
  36. +     old_menu_height = menu_height;
  37.       gui_set_shellsize(FALSE, FALSE);
  38. +     }
  39.   
  40.       return menu_height;
  41.   }
  42.   #endif /*FEAT_MENU*/
  43. ***************
  44. *** 1481,1487 ****
  45.       /* Edit box */
  46.       if (textfield != NULL)
  47.       {
  48. !     p = add_dialog_element(p, ES_LEFT | WS_TABSTOP | WS_BORDER,
  49.           PixelToDialogX(2 * dlgPaddingX),
  50.           PixelToDialogY(2 * dlgPaddingY + msgheight),
  51.           PixelToDialogX(dlgwidth - 4 * dlgPaddingX),
  52. --- 1483,1489 ----
  53.       /* Edit box */
  54.       if (textfield != NULL)
  55.       {
  56. !     p = add_dialog_element(p, ES_LEFT | ES_AUTOHSCROLL | WS_TABSTOP | WS_BORDER,
  57.           PixelToDialogX(2 * dlgPaddingX),
  58.           PixelToDialogY(2 * dlgPaddingY + msgheight),
  59.           PixelToDialogX(dlgwidth - 4 * dlgPaddingX),
  60. *** ../vim60.121/src/version.c    Wed Jan  9 16:08:19 2002
  61. --- src/version.c    Wed Jan  9 16:18:48 2002
  62. ***************
  63. *** 608,609 ****
  64. --- 608,611 ----
  65.   {   /* Add new patch number below this line */
  66. + /**/
  67. +     122,
  68.   /**/
  69.  
  70. -- 
  71. It is illegal to take more than three sips of beer at a time while standing.
  72.         [real standing law in Texas, United States of America]
  73.  
  74.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  75. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  76.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  77.