diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2009-10-22 20:25:32 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:00 +0000 |
commit | bcf846aa6083f249519837aec8b9bd1732574ec5 (patch) | |
tree | fb10b2a70a49a3b4263f6933716afd3a54208033 /src/ui | |
parent | 8de24fdecd6952b74bc7504417b4690439a1a125 (diff) |
* Fix g_editingField and g_waitingForKey in the ui to be properly cleared when you close all menus, preventing the cursor from being inappropriately hidden the next time you open one
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/ui_shared.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui/ui_shared.c b/src/ui/ui_shared.c index 6e046147..99f6ce32 100644 --- a/src/ui/ui_shared.c +++ b/src/ui/ui_shared.c @@ -1572,6 +1572,9 @@ void Menus_CloseAll( void ) // Close all other menus for( i = 0; i < menuCount; i++ ) Menus_Close( &Menus[ i ] ); + + g_editingField = qfalse; + g_waitingForKey = qfalse; } |