From 4eae3c77792998903d4a62a93f34e5c11c3db6f6 Mon Sep 17 00:00:00 2001 From: Bone White Date: Fri, 9 Jan 2015 03:31:09 +0000 Subject: [PATCH] Fix for "More verb fixes" Corrects a minor error which meant the map would not regain focus upon enabling of the hotkey mode with tab. --- interface/interface.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/interface.dm b/interface/interface.dm index f08ec85bf66..54a26a29cf8 100644 --- a/interface/interface.dm +++ b/interface/interface.dm @@ -136,7 +136,7 @@ Admin: if(hotkeyon)//using an if statement because I don't want to clutter winset() with ? operators winset(usr, "mainwindow.hotkey_toggle", "is-checked=true")//checks the button - winset(usr, "mainwindow.mapwindow", "focus=true")//sets mapwindow focus + winset(usr, "mapwindow.map", "focus=true")//sets mapwindow focus else winset(usr, "mainwindow.hotkey_toggle", "is-checked=false")//unchecks the button winset(usr, "mainwindow.input", "focus=true")//sets focus