# HG changeset patch # User Kim F. Storm # Date 1100310036 0 # Node ID c12b583f54b9205daba01b883cc5c7e0c74c206a # Parent 00222ee714ca48596fb1dc444bd44e3072544f62 Fixed these problems: ** Clicking on partially visible lines fails From: David Kastrup Date: 27 Apr 2004 16:42:58 +0200 I had gnus display a mouse-highlighted line (a URL from browse-url) partially at the bottom of its window. If I click with middle mouse key on it, the window gets recentered while I hold the mouse key pressed. If I release it, the window returns into its old position (cursor in top row) and nothing happens, presumably because the click was not registered on the line itself, but on the magically recentered version. That is a nuisance. Recentering of even partially visible click targets should only happen if window-point moves there, but not at the time of the click. From the moment I hold down a key until it gets released, the displayed window portion should not change, with the sole exception of scrolling when dragging at the edge of the screen. (progn (setq line-spacing 4) (dotimes (i (window-height)) (insert "\n" (int-to-string i))) (forward-line -2) (recenter -1)) ** Can't drag modeline when mouse-autoselect-window is set From: Klaus Zeitler Date: Mon, 11 Oct 2004 11:14:49 +0200 1. start emacs -q --no-site-file 2. set variable mouse-autoselect-window to t 3. split-window-vertically now I can drag the modeline only upwards but not downwards diff -r 00222ee714ca -r c12b583f54b9 admin/FOR-RELEASE --- a/admin/FOR-RELEASE Sat Nov 13 01:29:45 2004 +0000 +++ b/admin/FOR-RELEASE Sat Nov 13 01:40:36 2004 +0000 @@ -108,39 +108,6 @@ Update: Maybe only reveals itself when compiled with GTK+ -** Clicking on partially visible lines fails - -From: David Kastrup -Date: 27 Apr 2004 16:42:58 +0200 - -I had gnus display a mouse-highlighted line (a URL from browse-url) -partially at the bottom of its window. If I click with middle mouse -key on it, the window gets recentered while I hold the mouse key -pressed. If I release it, the window returns into its old position -(cursor in top row) and nothing happens, presumably because the click -was not registered on the line itself, but on the magically -recentered version. - -That is a nuisance. Recentering of even partially visible click -targets should only happen if window-point moves there, but not at -the time of the click. From the moment I hold down a key until it -gets released, the displayed window portion should not change, with -the sole exception of scrolling when dragging at the edge of the -screen. - - -** Can't drag modeline when mouse-autoselect-window is set - -From: Klaus Zeitler -Date: Mon, 11 Oct 2004 11:14:49 +0200 - -1. start emacs -q --no-site-file -2. set variable mouse-autoselect-window to t -3. split-window-vertically - -now I can drag the modeline only upwards but not downwards - - ** line-spacing and Electric-pop-up-window From: SAITO Takuya