From dc8d8fbc006a97561e8c3cfe825af3689870c2ea Mon Sep 17 00:00:00 2001 From: Luis Ibanez Date: Mon, 11 Jun 2001 02:10:31 -0400 Subject: [PATCH] ENH: Waiting cursor color were reversed --- Source/FLTKDialog/CMakeSetupGUIImplementation.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx b/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx index c07298ada..4f5d0b4e3 100644 --- a/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx +++ b/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx @@ -237,7 +237,7 @@ CMakeSetupGUIImplementation SaveCacheFromGUI(); // set the wait cursor - fl_cursor(FL_CURSOR_WAIT,FL_WHITE,FL_BLACK); + fl_cursor(FL_CURSOR_WAIT,FL_BLACK,FL_WHITE); // get all the info from the dialog // this->UpdateData(); if(!m_BuildPathChanged) @@ -272,7 +272,7 @@ CMakeSetupGUIImplementation // path is up-to-date now m_BuildPathChanged = false; // put the cursor back - fl_cursor(FL_CURSOR_DEFAULT,FL_WHITE,FL_BLACK); + fl_cursor(FL_CURSOR_DEFAULT,FL_BLACK,FL_WHITE); fl_message("Done !"); }