holding down left mouse button on toolbar widgets now repeats events; allows continued scrolling through toolbar items

ticket #289


SVN revision: 74825
This commit is contained in:
Mike Blumenkrantz 2012-08-03 08:48:26 +00:00
parent fc7c17a257
commit 3c72625d34
1 changed files with 28 additions and 0 deletions

View File

@ -6231,12 +6231,40 @@ collections {
signal: "mouse,down,1";
source: "left_arrow";
action: SIGNAL_EMIT "e,action,prev" "e";
after: "sb_left_repeat";
}
program {
name: "sb_left_repeat";
action: SIGNAL_EMIT "e,action,prev" "e";
in: 0.3 0.0;
after: "sb_left_repeat";
}
program {
name: "sb_left_repeat_stop";
signal: "mouse,up,1";
source: "left_arrow";
action: ACTION_STOP;
target: "sb_left_repeat";
}
program {
name: "sb_right";
signal: "mouse,down,1";
source: "right_arrow";
action: SIGNAL_EMIT "e,action,next" "e";
after: "sb_right_repeat";
}
program {
name: "sb_right_repeat";
action: SIGNAL_EMIT "e,action,next" "e";
in: 0.3 0.0;
after: "sb_right_repeat";
}
program {
name: "sb_right_repeat_stop";
signal: "mouse,up,1";
source: "right_arrow";
action: ACTION_STOP;
target: "sb_right_repeat";
}
}
}