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.128 < prev    next >
Encoding:
Internet Message Format  |  2002-01-11  |  1.8 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.128
  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.128
  11. Problem:    When moving a vertically split window to the far left or right,
  12.             the scrollbars are not adjusted. (Scott E Lee)  When 'mousefocus'
  13.             is set the mouse pointer wasn't adjusted.
  14. Solution:   Adjust the scrollbars and the mouse pointer.
  15. Files:      src/window.c
  16.  
  17.  
  18. *** ../vim60.127/src/window.c    Sun Dec 30 22:32:00 2001
  19. --- src/window.c    Sat Jan 12 16:15:08 2002
  20. ***************
  21. *** 1422,1430 ****
  22.   
  23.   #if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)
  24.       /* When 'guioptions' includes 'L' or 'R' may have to remove or add
  25. !      * scrollbars. */
  26.       if (gui.in_use)
  27.       gui_init_which_components(NULL);
  28.   #endif
  29.   
  30.   }
  31. --- 1422,1434 ----
  32.   
  33.   #if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)
  34.       /* When 'guioptions' includes 'L' or 'R' may have to remove or add
  35. !      * scrollbars.  Have to update them anyway. */
  36.       if (gui.in_use)
  37. +     {
  38.       gui_init_which_components(NULL);
  39. +     gui_update_scrollbars(TRUE);
  40. +     }
  41. +     need_mouse_correct = TRUE;
  42.   #endif
  43.   
  44.   }
  45. *** ../vim60.127/src/version.c    Fri Jan 11 20:54:04 2002
  46. --- src/version.c    Sat Jan 12 16:17:09 2002
  47. ***************
  48. *** 608,609 ****
  49. --- 608,611 ----
  50.   {   /* Add new patch number below this line */
  51. + /**/
  52. +     128,
  53.   /**/
  54.  
  55. -- 
  56. ARTHUR: What are you going to do. bleed on me?
  57.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  58.  
  59.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  60. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  61.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  62.