From: Ricardo Cruz Date: Mon, 10 May 2004 21:10:02 +0000 (+0000) Subject: Don't display cursor on help. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=c7c4de9d58fc9e3be4412cd1ec72e21c8c9ec72c;p=supertux.git Don't display cursor on help. Tobias, its the 2nd time you overwrite this code. Don't make me to twist your neck :D SVN-Revision: 1088 --- diff --git a/src/leveleditor.cpp b/src/leveleditor.cpp index 6f8dc3f7f..7f7a5f479 100644 --- a/src/leveleditor.cpp +++ b/src/leveleditor.cpp @@ -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; }