mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-30 21:03:28 +00:00
MP Staging/Join Game: disable Esc existing (fixes #3601)
This commit is contained in:
parent
64279eb4a3
commit
34bb081643
@ -125,6 +125,7 @@
|
||||
* Game Load screen gracefully handles savefiles that can't be parsed. (issue #3652)
|
||||
* The sidebar now shows alignment and damages as they would be on the hex under
|
||||
the mouse, rather than at the unit's current location. (PR #3642)
|
||||
* Fixed being able to dismiss a game lobby by pressing Esc.
|
||||
|
||||
## Version 1.14.5
|
||||
### AI
|
||||
|
@ -224,6 +224,7 @@ static std::string generate_user_description(const config& side)
|
||||
void mp_join_game::pre_show(window& window)
|
||||
{
|
||||
window.set_enter_disabled(true);
|
||||
window.set_escape_disabled(true);
|
||||
|
||||
//
|
||||
// Set title
|
||||
|
@ -73,6 +73,7 @@ mp_staging::~mp_staging()
|
||||
void mp_staging::pre_show(window& window)
|
||||
{
|
||||
window.set_enter_disabled(true);
|
||||
window.set_escape_disabled(true);
|
||||
|
||||
//
|
||||
// Set title and status widget states
|
||||
|
Loading…
x
Reference in New Issue
Block a user