1
0
Fork 0

minor cleanup

This commit is contained in:
mfranz 2007-07-13 16:52:39 +00:00
parent 6ebea18612
commit 05b3db2d31

View file

@ -12,12 +12,12 @@ calculated by adding 256 to the GLUT key value in glut.h.
<nasal> <nasal>
<script> <script>
var kbdshift = props.globals.getNode("/devices/status/keyboard/shift"); var shift = props.globals.getNode("/devices/status/keyboard/shift");
var kbdctrl = props.globals.getNode("/devices/status/keyboard/ctrl"); var ctrl = props.globals.getNode("/devices/status/keyboard/ctrl");
var kbdalt = props.globals.getNode("/devices/status/keyboard/alt"); var alt = props.globals.getNode("/devices/status/keyboard/alt");
var get_modifiers = func { var get_modifiers = func {
kbdshift.getValue() + 2 * kbdctrl.getValue() + 4 * kbdalt.getValue(); shift.getValue() + 2 * ctrl.getValue() + 4 * alt.getValue();
} }
var space_release = func {} var space_release = func {}
@ -30,7 +30,7 @@ calculated by adding 256 to the GLUT key value in glut.h.
controls.ptt(mod + 1); controls.ptt(mod + 1);
space_release = func { controls.ptt(0) } space_release = func { controls.ptt(0) }
} else { } else {
gui.popupTip("SPACE " ~ mod ~ " " ~ (state ? "press" : "release")); gui.popupTip("SPACE " ~ mod);
} }
} }
</script> </script>