diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-06-01 01:56:46 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-06-01 01:56:46 +0000 |
| commit | fba24cf073dc217d202dfb527bc0c9f8ddcbbd2d (patch) | |
| tree | cd9bb5de90b7a2a0cd8b93333f2b91e2f8cf7426 | |
| parent | 2d9260f8c4d1f8cf89502d76bed60b93882ee2f1 (diff) | |
make the default drag threshold 8px
| -rw-r--r-- | data/rc.xml | 2 | ||||
| -rw-r--r-- | doc/rc-mouse-focus.xml | 2 | ||||
| -rw-r--r-- | openbox/config.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/data/rc.xml b/data/rc.xml index 819fb00f..806e18e6 100644 --- a/data/rc.xml +++ b/data/rc.xml @@ -223,7 +223,7 @@ </keyboard> <mouse> - <dragThreshold>3</dragThreshold> + <dragThreshold>8</dragThreshold> <!-- number of pixels the mouse must move before a drag begins --> <doubleClickTime>200</doubleClickTime> <!-- in milliseconds (1000 = 1 second) --> diff --git a/doc/rc-mouse-focus.xml b/doc/rc-mouse-focus.xml index dcfc3811..acf2c14a 100644 --- a/doc/rc-mouse-focus.xml +++ b/doc/rc-mouse-focus.xml @@ -221,7 +221,7 @@ </keyboard> <mouse> - <dragThreshold>3</dragThreshold> + <dragThreshold>8</dragThreshold> <!-- number of pixels the mouse must move before a drag begins --> <doubleClickTime>200</doubleClickTime> <!-- in milliseconds (1000 = 1 second) --> diff --git a/openbox/config.c b/openbox/config.c index 480308be..86068d75 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -904,7 +904,7 @@ void config_startup(ObParseInst *i) parse_register(i, "keyboard", parse_keyboard, NULL); - config_mouse_threshold = 3; + config_mouse_threshold = 8; config_mouse_dclicktime = 200; bind_default_mouse(); |
