FLTK logo

[master] 7a7f3c3 - Avoid "Bogus FL_MOVE/FL_DRAG events" (#76)

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 All Forums  |  Back to fltk.commit  ]
 
Previous Message ]Next Message ]

[master] 7a7f3c3 - Avoid "Bogus FL_MOVE/FL_DRAG events" (#76) "Albrecht Schlosser" Apr 26, 2021  
 
commit 7a7f3c33243912b118f2fbf813dc5d80e8fef501
Author:     Albrecht Schlosser <albrechts.fltk@online.de>
AuthorDate: Mon Apr 26 14:15:55 2021 +0200
Commit:     Albrecht Schlosser <albrechts.fltk@online.de>
CommitDate: Mon Apr 26 14:15:55 2021 +0200

    Avoid "Bogus FL_MOVE/FL_DRAG events" (#76)
    
    Fix sending bogus events if CONSOLIDATE_MOTION is on.

 src/Fl_x.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git src/Fl_x.cxx src/Fl_x.cxx
index 35f7e4d..6bce629 100644
--- src/Fl_x.cxx
+++ src/Fl_x.cxx
@@ -216,7 +216,7 @@ static void do_queued_events() {
   // we send FL_LEAVE only if the mouse did not enter some other window:
   if (!in_a_window) Fl::handle(FL_LEAVE, 0);
 #if CONSOLIDATE_MOTION
-  else if (send_motion == fl_xmousewin) {
+  else if (send_motion && send_motion == fl_xmousewin) {
     send_motion = 0;
     Fl::handle(FL_MOVE, fl_xmousewin);
   }
Direct Link to Message ]
 
     
Previous Message ]Next Message ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.