3
0
Fork 0
forked from mirrors/nixpkgs

synaptics module: By default, disable edge drag scrolling if two finger scrolling is enabled

svn path=/nixos/trunk/; revision=28472
This commit is contained in:
Shea Levy 2011-08-10 22:14:46 +00:00
parent 96304c9afc
commit 38cab9070f

View file

@ -42,7 +42,7 @@ let cfg = config.services.xserver.synaptics; in
};
vertEdgeScroll = mkOption {
default = true;
default = ! cfg.twoFingerScroll;
description = "Whether to enable vertical edge drag-scrolling.";
};