Code cleanup time!

This commit is contained in:
Couls
2019-04-27 20:42:31 -04:00
parent 39dd7c3f86
commit fff65f34ca
7 changed files with 14 additions and 43 deletions
-9
View File
@@ -8,14 +8,5 @@
/mob/proc/set_focus(datum/new_focus)
if(focus == new_focus)
return
if(new_focus)
if(!new_focus.focusers) //Set up the new focus
new_focus.focusers = list()
new_focus.focusers += src
if(focus)
focus.focusers -= src //Tell the old focus we're done with it
focus = new_focus
reset_perspective(focus) //Maybe this should be done manually? You figure it out, reader
+1 -1
View File
@@ -42,5 +42,5 @@
for(var/k in 1 to macro_set.len)
var/key = macro_set[k]
var/command = macro_set[key]
winset(src, "[setname]-[REF(key)]", "parent=[setname];name=[key];command=[command]")
winset(src, "[setname]-[UID(key)]", "parent=[setname];name=[key];command=[command]")
winset(src, null, "input.focus=true input.background-color=[COLOR_INPUT_ENABLED] mainwindow.macro=default")