[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Sc-devel] [bug] SCTextView.keyUpAction



SCTextView.keyUpAction seems to fire twice - I never noticed this before:

(
var win, txt;

win = SCWindow.new.front;
txt = SCTextView(win,win.bounds.moveTo(0,0))
.keyDownAction_({ "down".postln })
.keyUpAction_({ "up".postln })
.focus(true);
)

- Scott