]> git.pld-linux.org Git - packages/vim.git/blame - 7.1.191
- updated to 7.1.285
[packages/vim.git] / 7.1.191
CommitLineData
d2415672
AG
1To: vim-dev@vim.org
2Subject: Patch 7.1.191
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.1.191
11Problem: Win32 GUI: after patch 7.1.168 there is still a problem when
12 clicking in a scrollbar. (Juergen Jottkaerr)
13Solution: Don't check the input buffer when dragging the scrollbar.
14Files: src/gui.c
15
16
17*** ../vim-7.1.190/src/gui.c Tue Nov 6 22:26:39 2007
18--- src/gui.c Thu Jan 3 13:16:29 2008
19***************
20*** 3734,3741 ****
21 sb->value = value;
22
23 #ifdef USE_ON_FLY_SCROLL
24! /* When not allowed to do the scrolling right now, return. */
25! if (dont_scroll || input_available())
26 return;
27 #endif
28 #ifdef FEAT_INS_EXPAND
29--- 3734,3743 ----
30 sb->value = value;
31
32 #ifdef USE_ON_FLY_SCROLL
33! /* When not allowed to do the scrolling right now, return.
34! * This also checked input_available(), but that causes the first click in
35! * a scrollbar to be ignored when Vim doesn't have focus. */
36! if (dont_scroll)
37 return;
38 #endif
39 #ifdef FEAT_INS_EXPAND
40*** ../vim-7.1.190/src/version.c Thu Jan 3 13:19:50 2008
41--- src/version.c Thu Jan 3 16:13:23 2008
42***************
43*** 668,669 ****
44--- 668,671 ----
45 { /* Add new patch number below this line */
46+ /**/
47+ 191,
48 /**/
49
50--
51GUARD #1: What -- a swallow carrying a coconut?
52ARTHUR: It could grip it by the husk!
53GUARD #1: It's not a question of where he grips it! It's a simple question
54 of weight ratios! A five ounce bird could not carry a 1 pound
55 coconut.
56 The Quest for the Holy Grail (Monty Python)
57
58 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
59/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
60\\\ download, build and distribute -- http://www.A-A-P.org ///
61 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.034989 seconds and 4 git commands to generate.