summaryrefslogtreecommitdiffstats
path: root/input/input.c
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-13 10:59:20 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-13 10:59:20 +0000
commitd06ef6e4ec5393995afb7e26e4e89e007792f2c3 (patch)
tree66ef83e28b97dab3c9d7e10c02a6af23e5b359ad /input/input.c
parent9b68d1309bb9d2eff1ecbb42a4a434253667f573 (diff)
downloadmpv-d06ef6e4ec5393995afb7e26e4e89e007792f2c3.tar.bz2
mpv-d06ef6e4ec5393995afb7e26e4e89e007792f2c3.tar.xz
small changes in event handling
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5062 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'input/input.c')
-rw-r--r--input/input.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/input/input.c b/input/input.c
index 74d17d9242..94f9d1fc77 100644
--- a/input/input.c
+++ b/input/input.c
@@ -140,6 +140,12 @@ static mp_key_name_t key_names[] = {
// This is the default binding we use when no config file is here
static mp_cmd_bind_t def_cmd_binds[] = {
+
+ { { MOUSE_BTN3, 0 }, "seek 10" },
+ { { MOUSE_BTN4, 0 }, "seek -10" },
+ { { MOUSE_BTN5, 0 }, "volume 1" },
+ { { MOUSE_BTN6, 0 }, "volume -1" },
+
{ { KEY_RIGHT, 0 }, "seek 10" },
{ { KEY_LEFT, 0 }, "seek -10" },
{ { KEY_UP, 0 }, "seek 60" },