make the default drag threshold 8px
This commit is contained in:
parent
2d9260f8c4
commit
fba24cf073
3 changed files with 3 additions and 3 deletions
|
@ -223,7 +223,7 @@
|
||||||
</keyboard>
|
</keyboard>
|
||||||
|
|
||||||
<mouse>
|
<mouse>
|
||||||
<dragThreshold>3</dragThreshold>
|
<dragThreshold>8</dragThreshold>
|
||||||
<!-- number of pixels the mouse must move before a drag begins -->
|
<!-- number of pixels the mouse must move before a drag begins -->
|
||||||
<doubleClickTime>200</doubleClickTime>
|
<doubleClickTime>200</doubleClickTime>
|
||||||
<!-- in milliseconds (1000 = 1 second) -->
|
<!-- in milliseconds (1000 = 1 second) -->
|
||||||
|
|
|
@ -221,7 +221,7 @@
|
||||||
</keyboard>
|
</keyboard>
|
||||||
|
|
||||||
<mouse>
|
<mouse>
|
||||||
<dragThreshold>3</dragThreshold>
|
<dragThreshold>8</dragThreshold>
|
||||||
<!-- number of pixels the mouse must move before a drag begins -->
|
<!-- number of pixels the mouse must move before a drag begins -->
|
||||||
<doubleClickTime>200</doubleClickTime>
|
<doubleClickTime>200</doubleClickTime>
|
||||||
<!-- in milliseconds (1000 = 1 second) -->
|
<!-- in milliseconds (1000 = 1 second) -->
|
||||||
|
|
|
@ -904,7 +904,7 @@ void config_startup(ObParseInst *i)
|
||||||
|
|
||||||
parse_register(i, "keyboard", parse_keyboard, NULL);
|
parse_register(i, "keyboard", parse_keyboard, NULL);
|
||||||
|
|
||||||
config_mouse_threshold = 3;
|
config_mouse_threshold = 8;
|
||||||
config_mouse_dclicktime = 200;
|
config_mouse_dclicktime = 200;
|
||||||
|
|
||||||
bind_default_mouse();
|
bind_default_mouse();
|
||||||
|
|
Loading…
Reference in a new issue