]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Jan Holmen Holsten's patch for drag-selects to scroll the scrollback.
authorSimon Tatham <anakin@pobox.com>
Sat, 8 Sep 2001 12:37:48 +0000 (12:37 +0000)
committerSimon Tatham <anakin@pobox.com>
Sat, 8 Sep 2001 12:37:48 +0000 (12:37 +0000)
[originally from svn r1252]

terminal.c

index a63d8be86ad0e1897e666e178a0283f02374e413..5b8a1838e897fea089a7848428a4411429ff49d4 100644 (file)
@@ -3082,11 +3082,18 @@ void term_mouse(Mouse_Button b, Mouse_Action a, int x, int y,
 {
     pos selpoint;
     unsigned long *ldata;
+    int raw_mouse = xterm_mouse && !(cfg.mouse_override && shift);
 
-    if (y < 0)
+    if (y < 0) {
        y = 0;
-    if (y >= rows)
+       if (a == MA_DRAG && !raw_mouse)
+           term_scroll(0, -1);
+    }
+    if (y >= rows) {
        y = rows - 1;
+       if (a == MA_DRAG && !raw_mouse)
+           term_scroll(0, +1);
+    }
     if (x < 0) {
        if (y > 0) {
            x = cols - 1;
@@ -3103,7 +3110,7 @@ void term_mouse(Mouse_Button b, Mouse_Action a, int x, int y,
     if ((ldata[cols] & LATTR_MODE) != LATTR_NORM)
        selpoint.x /= 2;
 
-    if (xterm_mouse && !(cfg.mouse_override && shift)) {
+    if (raw_mouse) {
        int encstate = 0, r, c;
        char abuf[16];
        static int is_down = 0;