all repos — openbox @ fba24cf073dc217d202dfb527bc0c9f8ddcbbd2d

openbox fork - make it a bit more like ryudo

make the default drag threshold 8px
Dana Jansens danakj@orodu.net
commit

fba24cf073dc217d202dfb527bc0c9f8ddcbbd2d

parent

2d9260f8c4d1f8cf89502d76bed60b93882ee2f1

3 files changed, 3 insertions(+), 3 deletions(-)

jump to
M data/rc.xmldata/rc.xml

@@ -223,7 +223,7 @@ </keybind>

</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) -->
M doc/rc-mouse-focus.xmldoc/rc-mouse-focus.xml

@@ -221,7 +221,7 @@ </keybind>

</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) -->
M openbox/config.copenbox/config.c

@@ -904,7 +904,7 @@ bind_default_keyboard();

parse_register(i, "keyboard", parse_keyboard, NULL); - config_mouse_threshold = 3; + config_mouse_threshold = 8; config_mouse_dclicktime = 200; bind_default_mouse();