diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2009-04-13 07:32:01 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2009-04-13 07:32:01 +0000 |
| commit | c2e3704d6b1fb3a65cc781de6f9b4a4f70131e2b (patch) | |
| tree | e71fefe9b09c2c22c87057b3b91f6de514144e39 /src/Fl_File_Input.cxx | |
| parent | ead9c2ce24c88523ebe9295015f993231a61b66a (diff) | |
Little rearrangement for readibility
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6758 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_File_Input.cxx')
| -rw-r--r-- | src/Fl_File_Input.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Fl_File_Input.cxx b/src/Fl_File_Input.cxx index 5f329904d..efd2d062e 100644 --- a/src/Fl_File_Input.cxx +++ b/src/Fl_File_Input.cxx @@ -197,8 +197,10 @@ Fl_File_Input::handle(int event) // I - 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; |
