Take cursor out of the help screen.
authorRicardo Cruz <rick2@aeiou.pt>
Mon, 10 May 2004 11:48:08 +0000 (11:48 +0000)
committerRicardo Cruz <rick2@aeiou.pt>
Mon, 10 May 2004 11:48:08 +0000 (11:48 +0000)
Tobias, you overwrote this commit :)

SVN-Revision: 1063

src/leveleditor.cpp

index 2e24e8e..4ce2494 100644 (file)
@@ -1563,6 +1563,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;
@@ -1703,5 +1705,6 @@ void le_showhelp()
 
   show_selections = true;
   le_show_grid = tmp_show_grid;
+  le_selection_mode = temp_le_selection_mode;
   le_help_shown = false;
 }