mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-24 12:21:34 +00:00
* Source/x11/XGServerEvent.m (mouseOptionsChanged:): change double-click
minimum value to 200 and default to 300.
This commit is contained in:
parent
59b1f51e5f
commit
b5003272a7
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2019-04-12 Sergii Stoian <stoyan255@gmail.com>
|
||||||
|
|
||||||
|
* Source/x11/XGServerEvent.m (mouseOptionsChanged:): change double-click
|
||||||
|
minimum value to 200 and default to 300.
|
||||||
|
|
||||||
2019-04-11 Sergii Stoian <stoyan255@gmail.com>
|
2019-04-11 Sergii Stoian <stoyan255@gmail.com>
|
||||||
|
|
||||||
* Source/x11/XGServerEvent.m (processEvent:): do not send event if
|
* Source/x11/XGServerEvent.m (processEvent:): do not send event if
|
||||||
|
|
|
@ -354,8 +354,8 @@ posixFileDescriptor: (NSPosixFileDescriptor*)fileDescriptor
|
||||||
NSUserDefaults *defs = [NSUserDefaults standardUserDefaults];
|
NSUserDefaults *defs = [NSUserDefaults standardUserDefaults];
|
||||||
|
|
||||||
clickTime = [defs integerForKey:@"GSDoubleClickTime"];
|
clickTime = [defs integerForKey:@"GSDoubleClickTime"];
|
||||||
if (clickTime < 250)
|
if (clickTime < 200)
|
||||||
clickTime = 250;
|
clickTime = 300;
|
||||||
|
|
||||||
clickMove = [defs integerForKey:@"GSMouseMoveThreshold"];
|
clickMove = [defs integerForKey:@"GSMouseMoveThreshold"];
|
||||||
if (clickMove < 3)
|
if (clickMove < 3)
|
||||||
|
|
Loading…
Reference in a new issue