|
Karsten Hopp |
ba49f7 |
To: vim-dev@vim.org
|
|
Karsten Hopp |
ba49f7 |
Subject: Patch 7.0.121
|
|
Karsten Hopp |
ba49f7 |
Fcc: outbox
|
|
Karsten Hopp |
ba49f7 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
ba49f7 |
Mime-Version: 1.0
|
|
Karsten Hopp |
ba49f7 |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
ba49f7 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
ba49f7 |
------------
|
|
Karsten Hopp |
ba49f7 |
|
|
Karsten Hopp |
ba49f7 |
Patch 7.0.121
|
|
Karsten Hopp |
ba49f7 |
Problem: GUI: Dragging the last status line doesn't work when there is a
|
|
Karsten Hopp |
ba49f7 |
text tabline. (Markus Wolf)
|
|
Karsten Hopp |
ba49f7 |
Solution: Take the text tabline into account when deciding to start modeless
|
|
Karsten Hopp |
ba49f7 |
selection.
|
|
Karsten Hopp |
ba49f7 |
Files: src/gui.c
|
|
Karsten Hopp |
ba49f7 |
|
|
Karsten Hopp |
ba49f7 |
|
|
Karsten Hopp |
ba49f7 |
*** ../vim-7.0.120/src/gui.c Sun Sep 10 21:38:48 2006
|
|
Karsten Hopp |
ba49f7 |
--- src/gui.c Sun Oct 8 12:47:04 2006
|
|
Karsten Hopp |
ba49f7 |
***************
|
|
Karsten Hopp |
ba49f7 |
*** 2873,2878 ****
|
|
Karsten Hopp |
ba49f7 |
--- 2873,2881 ----
|
|
Karsten Hopp |
ba49f7 |
*/
|
|
Karsten Hopp |
ba49f7 |
if ((State == NORMAL || State == NORMAL_BUSY || (State & INSERT))
|
|
Karsten Hopp |
ba49f7 |
&& Y_2_ROW(y) >= topframe->fr_height
|
|
Karsten Hopp |
ba49f7 |
+ # ifdef FEAT_WINDOWS
|
|
Karsten Hopp |
ba49f7 |
+ + firstwin->w_winrow
|
|
Karsten Hopp |
ba49f7 |
+ # endif
|
|
Karsten Hopp |
ba49f7 |
&& button != MOUSE_DRAG
|
|
Karsten Hopp |
ba49f7 |
# ifdef FEAT_MOUSESHAPE
|
|
Karsten Hopp |
ba49f7 |
&& !drag_status_line
|
|
Karsten Hopp |
ba49f7 |
*** ../vim-7.0.120/src/version.c Fri Oct 6 23:33:22 2006
|
|
Karsten Hopp |
ba49f7 |
--- src/version.c Sun Oct 8 13:55:58 2006
|
|
Karsten Hopp |
ba49f7 |
***************
|
|
Karsten Hopp |
ba49f7 |
*** 668,669 ****
|
|
Karsten Hopp |
ba49f7 |
--- 668,671 ----
|
|
Karsten Hopp |
ba49f7 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
ba49f7 |
+ /**/
|
|
Karsten Hopp |
ba49f7 |
+ 121,
|
|
Karsten Hopp |
ba49f7 |
/**/
|
|
Karsten Hopp |
ba49f7 |
|
|
Karsten Hopp |
ba49f7 |
--
|
|
Karsten Hopp |
ba49f7 |
If they don't keep on exercising their lips, he thought, their brains
|
|
Karsten Hopp |
ba49f7 |
start working.
|
|
Karsten Hopp |
ba49f7 |
-- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
|
|
Karsten Hopp |
ba49f7 |
|
|
Karsten Hopp |
ba49f7 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
ba49f7 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
ba49f7 |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
ba49f7 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|