Author: matt
Date: 2009-04-13 00:32:03 -0700 (Mon, 13 Apr 2009)
New Revision: 6759
Log:
Forgot line in Fl_File_Input

Modified:
   branches/branch-1.1/src/Fl_File_Input.cxx

Modified: branches/branch-1.1/src/Fl_File_Input.cxx
===================================================================
--- branches/branch-1.1/src/Fl_File_Input.cxx   2009-04-13 07:32:01 UTC (rev 
6758)
+++ branches/branch-1.1/src/Fl_File_Input.cxx   2009-04-13 07:32:03 UTC (rev 
6759)
@@ -186,13 +186,16 @@
 Fl_File_Input::handle(int event)               // I - Event
 {
 //  printf("handle(event = %d)\n", event);
+  static char inButtonBar = 0;
 
   switch (event) {
     case FL_MOVE :
     case FL_ENTER :
       if (active_r()) {
-       if (Fl::event_y() < (y() + DIR_HEIGHT)) 
window()->cursor(FL_CURSOR_DEFAULT);
-       else window()->cursor(FL_CURSOR_INSERT);
+       if (Fl::event_y() < (y() + DIR_HEIGHT)) 
+          window()->cursor(FL_CURSOR_DEFAULT);
+       else 
+          window()->cursor(FL_CURSOR_INSERT);
       }
 
       return 1;

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to