Don't display cursor on help.
authorRicardo Cruz <rick2@aeiou.pt>
Mon, 10 May 2004 21:10:02 +0000 (21:10 +0000)
committerRicardo Cruz <rick2@aeiou.pt>
Mon, 10 May 2004 21:10:02 +0000 (21:10 +0000)
Tobias, its the 2nd time you overwrite this code. Don't make me to twist your neck :D

SVN-Revision: 1088

src/leveleditor.cpp

index 6f8dc3f..7f7a5f4 100644 (file)
@@ -1722,6 +1722,8 @@ void le_testlevel()
 void le_showhelp()
 {
   bool tmp_show_grid = le_show_grid;
+  int temp_le_selection_mode = le_selection_mode;
+  le_selection_mode = NONE;
   show_selections = true;
   le_show_grid = false;
   le_help_shown = true;
@@ -1862,5 +1864,6 @@ void le_showhelp()
 
   show_selections = true;
   le_show_grid = tmp_show_grid;
+  le_selection_mode = temp_le_selection_mode;
   le_help_shown = false;
 }