[Bug 726832]

2015-04-03 Thread Chris Hubick
What release was this actually fixed in?

I still seem to be experiencing this behaviour in Fedora 21 (xorg-x11
-drv-synaptics-1.8.1-4).

Or was there some regression?

Much Thanks!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832]

2015-04-10 Thread Peter Hutterer
you're right, it had a regression, it's still not fixed. looks like the
only fix doable is to drop abs events from the driver and make the
touchpad relative only. This requires re-adjusting the pointer
acceleration though.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832]

2015-10-10 Thread Mikiausch
I don't know If this is caused by the same issue, but the problem is
quite siilar, so I attach this as a commen instead of filing a new bug.
I'm using debian testing / x.org 1.17.2 with a Lenovo U41 which has an
ALPS touchpad.

The problem is that the touchpad is way faster on the horizontal axis
than on the vertical axis: while a swipe from left to right will move
the pointer approximately from the left to the right screen edge, a
complete top-down swipe only covers one quarter of the screen - of
course influenced by the acceleration settings.

Fiddling with the "VertResolution" and "HorizResolution" options didn't
show any effect for me.

Looking at the code it seems that these options were actually rendered
useless when the synaptics driver scaling was removed in commit
#0fb59b3487d57523a03f078a2061e2ea0cacbc7c. The driver always passes the
resolution values reported by the device to the server instead of the
overwritten ones from the config.

Some debugging later, this is what the device reports to the server: 
minx: 0, maxx: 4095, resx: 40
miny: 0, maxy: 2047, resy: 71

So it looks like the device has indeed a different resolution in x and y
and this seems to get mix up the scaling somehow.


I tried to make the driver pass the VertResolution and HorizResolution 
parameters instead of the device values by changing some lines from synaptics.c:

xf86InitValuatorAxisStruct(dev, 0, axes_labels[0], min, max, priv->resx
* 1000, 0, priv->resx * 1000, Relative);

into

xf86InitValuatorAxisStruct(dev, 0, axes_labels[0], min, max,
priv->synpara.resolution_horiz * 1000, 0, priv->synpara.resolution_horiz
* 1000, Relative);

and

xf86InitValuatorAxisStruct(dev, 1, axes_labels[1], min, max, priv->resy
* 1000, 0, priv->resy * 1000, Relative);

into

xf86InitValuatorAxisStruct(dev, 1, axes_labels[1], min, max,
priv->synpara.resolution_vert * 1000, 0, priv->synpara.resolution_vert *
1000, Relative);


After that, setting both "VertResolution" and "HorizResolution" to the same 
value, makes the touchpad behave as expected. 

But I think the real problem is somewhere deeper in getevents.c

As far as I understand the scale_for_device_resolution function tries to
map the touch pad size to the screen size which works fine as long as
resolution_ratio equals 1 which is the case for all pads with an equal
x/y resolution and breaks on devices with uneven resolutions. But why is
the resolution involved in the scaling anyway? If we try to map 1the
device size to the screen size we don't need to bother about the device
resolution. The axis sizes and the screen resolution should be enough?!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832]

2015-10-17 Thread Peter Hutterer
The VertResolution/HorizResolution options shouldn't be needed on newer
touchpads anyway if the kernel provides it. So you can ignore those.

and yes, this is the same bug.

the problem is caused by the server needing to support true absolute
devices in relative mode (e.g. graphics tablets). If you have one of
those, a relative motion on the device should reflect the motion on the
screen - that's harder to do on touchpads where the aspect ratio and
sizes are out of whack.

fwiw, as of http://cgit.freedesktop.org/xorg/driver/xf86-input-
synaptics/commit/?id=0a4cf80a00663ff3ce8e76baf0940782576efe13, synaptics
doesn't need to be absolute anymore, you can replace all
xf86InitValuatorAxisStruct() calls with a min/max of -1. This makes the
axes truly relative and is the right solution. But you'll find the
pointer accel will be completely out of whack after that, if you manage
to find the magic numbers to tweak it back to what it currently is,
you've found the solution.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832]

2012-04-20 Thread Peter Hutterer
This is somewhere in the server, the accel the driver supplies is always
the same.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832]

2012-04-20 Thread Peter Hutterer
*** Bug 40417 has been marked as a duplicate of this bug. ***

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832]

2012-04-20 Thread Freedesktoporg
It looks like Bryce Harrington put together a patch way back in 2010 to
address this, or at least something closely related. Here's the link:

https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-
synaptics/+bug/327428/+attachment/1752254/+files/116_resolution_detect_option.patch

Here's another patch from the same (duplicate) launchpad bug report:

https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-
synaptics/+bug/327428/+attachment/1368744/+files/synaptics.diff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832]

2012-04-20 Thread Peter Hutterer
(In reply to comment #9)
> It looks like Bryce Harrington put together a patch way back in 2010 to 
> address
> this, or at least something closely related. Here's the link:
> 
> https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/327428/+attachment/1752254/+files/116_resolution_detect_option.patch
> 
> Here's another patch from the same (duplicate) launchpad bug report:
> 
> https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/327428/+attachment/1368744/+files/synaptics.diff


That's a hack. We need to fix the problem, not just paper over it with another 
option.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832]

2012-04-23 Thread Simon-thum
I think this was discussed recently on the mailing list - maybe in your
holidays - synaptics somehow adjusts itself to the display geometry,
IIRC.

I don't find it right now, but it sounds as if you could check for
display code in synaptics just to be safe.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832]

2012-04-23 Thread Peter Hutterer
(In reply to comment #11)
> I think this was discussed recently on the mailing list - maybe in your
> holidays - synaptics somehow adjusts itself to the display geometry, IIRC.

the driver itself has no knowledge of the display size, I think it's
just the only driver that triggers it. some combination of setups,
possibly the absolute axis ranges but relative events being sent.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832]

2013-01-11 Thread TB2
cs Edge Scrolling (294): 0, 0, 0
Synaptics Two-Finger Scrolling (295):   1, 1
Synaptics Move Speed (296): 1.00, 0.10, 0.10, 40.00
Synaptics Edge Motion Pressure (297):   30, 160
Synaptics Edge Motion Speed (298):  1, 311
Synaptics Edge Motion Always (299): 0
Synaptics Off (300):2
Synaptics Locked Drags (301):   0
Synaptics Locked Drags Timeout (302):   5000
Synaptics Tap Action (303): 0, 0, 0, 0, 1, 2, 3
Synaptics Click Action (304):   1, 3, 2
Synaptics Circular Scrolling (305): 0
Synaptics Circular Scrolling Distance (306):0.10
Synaptics Circular Scrolling Trigger (307): 0
Synaptics Circular Pad (308):   0
Synaptics Palm Detection (309): 1
Synaptics Palm Dimensions (310):4, 1
Synaptics Coasting Speed (311): 20.00, 50.00
Synaptics Pressure Motion (312):30, 160
Synaptics Pressure Motion Factor (313): 1.00, 1.00
Synaptics Grab Event Device (314):  1
Synaptics Gestures (315):   1
Synaptics Capabilities (316):   1, 0, 0, 1, 1, 1, 1
Synaptics Pad Resolution (317): 32, 32
Synaptics Area (318):   0, 0, 0, 0
Synaptics Soft Button Areas (319):  1630, 0, 1737, 0, 0, 0, 0, 0
Synaptics Noise Cancellation (320): 19, 19
Device Product ID (247):2, 14
Device Node (248):  "/dev/input/event7"
MaxSpeed (504): 0.10


Note especially that the capabilities: 

Synaptics Capabilities (316): 1, 0, 0, 1, 1, 1, 1

They specify that the horizontal and vertical resolution can in fact be
set (the last two "1"s). However the parameters are missing from xinput
and I can't set them. Setting "Pad Resolution" (317) is impossible
because it's readonly. So the mechanism to compensate resolutions as
specified in the manpage is completely missing. Could this be related?

I'm using xf86-input-synaptics 1.6.2 built on Oct 5. 2012.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 726832]

2013-01-11 Thread Peter Hutterer
Pad Resolution is currently readonly on purpose - your pad is unlikely
to change  resolutions at runtime. I admit it would make testing it
easier but right now you need to add an xorg.conf(.d) option for it.
synclient appears to be lacking it altogether, that should be fixed
(patches appreciated)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832]

2013-01-11 Thread Peter Hutterer
http://patchwork.freedesktop.org/patch/12839/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832]

2013-02-05 Thread Simon Strandman
The patch in comment 15 seems to be working. Thanks! :)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832]

2013-02-19 Thread Peter Hutterer
commit 61a99aff9d33728a0b67920254d2d4d79f80cf39
Author: Peter Hutterer 
Date:   Fri Jan 11 14:22:07 2013 +1000

dix: pre-scale relative events from abs devices to desktop ratio
(#31636)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] CurrentDmesg.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/726832/+attachment/4313416/+files/CurrentDmesg.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] DpkgLog.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "DpkgLog.txt"
   https://bugs.launchpad.net/bugs/726832/+attachment/4313418/+files/DpkgLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] LightdmDisplayLog.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "LightdmDisplayLog.txt"
   
https://bugs.launchpad.net/bugs/726832/+attachment/4313419/+files/LightdmDisplayLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] LightdmGreeterLogOld.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "LightdmGreeterLogOld.txt"
   
https://bugs.launchpad.net/bugs/726832/+attachment/4313421/+files/LightdmGreeterLogOld.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] BootDmesg.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "BootDmesg.txt"
   
https://bugs.launchpad.net/bugs/726832/+attachment/4313414/+files/BootDmesg.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] ProcEnviron.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/726832/+attachment/4313426/+files/ProcEnviron.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] LightdmLog.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "LightdmLog.txt"
   
https://bugs.launchpad.net/bugs/726832/+attachment/4313422/+files/LightdmLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Dependencies.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/726832/+attachment/4313417/+files/Dependencies.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Lsusb.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/726832/+attachment/4313424/+files/Lsusb.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] peripherals.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "peripherals.txt"
   
https://bugs.launchpad.net/bugs/726832/+attachment/4313433/+files/peripherals.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] xinput.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "xinput.txt"
   https://bugs.launchpad.net/bugs/726832/+attachment/4313434/+files/xinput.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] xserver.devices.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "xserver.devices.txt"
   
https://bugs.launchpad.net/bugs/726832/+attachment/4313435/+files/xserver.devices.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] LightdmGreeterLog.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "LightdmGreeterLog.txt"
   
https://bugs.launchpad.net/bugs/726832/+attachment/4313420/+files/LightdmGreeterLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] XorgLog.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "XorgLog.txt"
   https://bugs.launchpad.net/bugs/726832/+attachment/4313431/+files/XorgLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] ProcModules.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/726832/+attachment/4313428/+files/ProcModules.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] ProcCpuinfo.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/726832/+attachment/4313425/+files/ProcCpuinfo.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] UdevLog.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "UdevLog.txt"
   https://bugs.launchpad.net/bugs/726832/+attachment/4313430/+files/UdevLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] ProcInterrupts.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/726832/+attachment/4313427/+files/ProcInterrupts.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Lspci.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/726832/+attachment/4313423/+files/Lspci.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] BootLog.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "BootLog.txt"
   https://bugs.launchpad.net/bugs/726832/+attachment/4313415/+files/BootLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] UdevDb.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/726832/+attachment/4313429/+files/UdevDb.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] XorgLogOld.txt

2015-02-05 Thread Maxim Poletaev
apport information

** Attachment added: "XorgLogOld.txt"
   
https://bugs.launchpad.net/bugs/726832/+attachment/4313432/+files/XorgLogOld.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Re: Touchpad speed scales with multimonitor size per axis

2015-04-10 Thread Bug Watch Updater
** Changed in: xorg-driver-synaptics
   Status: Fix Released => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Re: Touchpad speed scales with multimonitor size per axis

2012-04-27 Thread Bryce Harrington
** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Status: Confirmed => Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Re: Touchpad speed scales with multimonitor size per axis

2015-02-05 Thread Maxim Poletaev
ApportVersion: 2.14.1-0ubuntu3.6
Architecture: amd64
CurrentDesktop: Unity
DistUpgraded: Fresh install
DistroCodename: trusty
DistroRelease: Ubuntu 14.04
DistroVariant: ubuntu
InstallationDate: Installed on 2014-09-27 (131 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140722.2)
MachineType: ASUSTeK COMPUTER INC. X550LA
Package: xserver-xorg-input-synaptics 1.7.4-0ubuntu1
PackageArchitecture: amd64
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-45-generic.efi.signed 
root=UUID=5156b236-b5a6-444b-b49b-ec98ce530337 ro quiet splash acpi_osi= 
vt.handoff=7
ProcVersionSignature: Ubuntu 3.13.0-45.74-generic 3.13.11-ckt13
Tags:  trusty ubuntu
Uname: Linux 3.13.0-45-generic x86_64
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: adm cdrom dip libvirtd lpadmin plugdev sambashare sudo
_MarkForUpload: True
dmi.bios.date: 07/23/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: X550LA.210
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: X550LA
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: ATN12345678901234567
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrX550LA.210:bd07/23/2013:svnASUSTeKCOMPUTERINC.:pnX550LA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX550LA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.name: X550LA
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.
version.compiz: compiz 1:0.9.11.3+14.04.20141104-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.56-1~ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.3
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.3
version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.6
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1.3
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
xserver.bootTime: Thu Feb  5 23:59:38 2015
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id   18412 
 vendor AUO
xserver.version: 2:1.15.1-0ubuntu2.6


** Tags added: apport-collected trusty ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Re: Touchpad speed scales with multimonitor size per axis

2015-02-05 Thread Maxim Poletaev
** Tags removed: apport-collected trusty ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Re: Touchpad speed scales with multimonitor size per axis

2014-12-02 Thread Serkan Durusoy
FWIW, I am currently experiencing this problem and wish to provide more
information. This is my first bug report, so I'd appreciate some
guidance.

The problem is exactly as described, on 14.04.1 LTS 64-bit on an Asus
Zenbook with Elan touchpad.

I've reported the outcome of the apport-collect command over at
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1398621

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Re: Touchpad speed scales with multimonitor size per axis

2014-12-16 Thread Dan Smith
I can confirm similar behaviour on 14.04 64-bit with ETPS/2 Elantech Touchpad.
As soon as I attach an external monitor over VGA, my touchpad loses precision: 
the cursor fidgets as I move it around. I can barely aim it at a button to 
click.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Re: Touchpad speed scales with multimonitor size per axis

2014-12-16 Thread Dan Smith
Just wanted to clarify that I'm not experiencing cursor acceleration
like in the OP, just the cursor fidgeting.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Re: Touchpad speed scales with multimonitor size per axis

2014-12-16 Thread Christopher M. Penalver
Dan Smith, thank you for your comment. So your problem and hardware may be 
tracked, could you please file a new report by executing the following in a 
terminal:
ubuntu-bug xorg

Please ensure you have xdiagnose installed, and that you click the Yes
button for attaching additional debugging information.

For more on this, please see the official Ubuntu documentation:
Ubuntu X.Org Team, Ubuntu Bug Control, and Ubuntu Bug Squad: 
https://wiki.ubuntu.com/Bugs/BestPractices#X.2BAC8-Reporting.Focus_on_One_Issue
Ubuntu Community: 
https://help.ubuntu.com/community/ReportingBugs#Bug_reporting_etiquette

When opening up the new report, please feel free to subscribe me to it.

As well, please do not announce in this report you created a new bug
report.

Thank you for your understanding.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Re: Touchpad speed scales with multimonitor size per axis

2015-02-05 Thread Christopher M. Penalver
** Attachment removed: "BootDmesg.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313414/+files/BootDmesg.txt

** Attachment removed: "BootLog.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313415/+files/BootLog.txt

** Attachment removed: "Dependencies.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313417/+files/Dependencies.txt

** Attachment removed: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313416/+files/CurrentDmesg.txt

** Attachment removed: "DpkgLog.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313418/+files/DpkgLog.txt

** Attachment removed: "LightdmDisplayLog.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313419/+files/LightdmDisplayLog.txt

** Attachment removed: "LightdmGreeterLog.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313420/+files/LightdmGreeterLog.txt

** Attachment removed: "LightdmGreeterLogOld.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313421/+files/LightdmGreeterLogOld.txt

** Attachment removed: "LightdmLog.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313422/+files/LightdmLog.txt

** Attachment removed: "Lspci.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313423/+files/Lspci.txt

** Attachment removed: "Lsusb.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313424/+files/Lsusb.txt

** Attachment removed: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313425/+files/ProcCpuinfo.txt

** Attachment removed: "ProcEnviron.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313426/+files/ProcEnviron.txt

** Attachment removed: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313427/+files/ProcInterrupts.txt

** Attachment removed: "UdevDb.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313429/+files/UdevDb.txt

** Attachment removed: "ProcModules.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313428/+files/ProcModules.txt

** Attachment removed: "xinput.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313434/+files/xinput.txt

** Attachment removed: "UdevLog.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313430/+files/UdevLog.txt

** Attachment removed: "XorgLog.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313431/+files/XorgLog.txt

** Attachment removed: "XorgLogOld.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313432/+files/XorgLogOld.txt

** Attachment removed: "peripherals.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313433/+files/peripherals.txt

** Attachment removed: "xserver.devices.txt"
   
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+attachment/4313435/+files/xserver.devices.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Re: Touchpad speed scales with multimonitor size per axis

2014-01-10 Thread Christopher M. Penalver
Martin Spacek, this bug was reported a while ago and there hasn't been
any activity in it recently. We were wondering if this is still an
issue? If so, could you please test for this with the latest development
release of Ubuntu? ISO images are available from
http://cdimage.ubuntu.com/daily-live/current/ .

If it remains an issue, could you please run the following command in
the development release from a Terminal
(Applications->Accessories->Terminal), as it will automatically gather
and attach updated debug information to this report:

apport-collect -p xserver-xorg-input-synaptics REPLACE-WITH-BUG-NUMBER

Please note, given that the information from the prior release is
already available, doing this on a release prior to the development one
would not be helpful.

Thank you for your understanding.

Helpful bug reporting tips:
https://wiki.ubuntu.com/ReportingBugs

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Status: Triaged => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Re: Touchpad speed scales with multimonitor size per axis

2012-12-08 Thread i30817
Something strange happens with exult that appears related to this
scaling, if you use a touchpad.

You do need the games, and sudo apt-get install exult ( this ppa is
best, since it asks for location: https://code.launchpad.net/~exult-
team/+archive/exult-daily  ).

What appears to happen is that the touchpad speed scaling goes crazy
with the smaller resolution that exult uses if used in fullscreen; the
speed is far too fast for confortable uses, whatever speed you set it at
with gpointingdevice settings (but you can make it worse).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Re: Touchpad speed scales with multimonitor size per axis

2012-12-08 Thread i30817
Also, the above is especially strange, because exult normally _decreases_ the 
normal resolution, to 800x600 or 640x480, and the speed increases rather alot. 
I think synaptics might be scaling speed with 'real' pixels, instead of 
'logical' pixels. 
Granted, it doesn't seem to happen in gnome 3, if you change to 800x600 so 
maybe it's something else.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Re: Touchpad speed scales with multimonitor size per axis

2013-02-19 Thread Bug Watch Updater
** Changed in: xorg-driver-synaptics
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Re: Touchpad speed scales with multimonitor size per axis

2012-03-27 Thread Chase Douglas
** No longer affects: utouch

** Also affects: xserver-xorg-input-synaptics (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Status: New => Confirmed

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Importance: Undecided => Low

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726832] Re: Touchpad speed scales with multimonitor size per axis

2017-03-19 Thread Bug Watch Updater
** Changed in: xorg-driver-synaptics
   Status: Confirmed => Won't Fix

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726832

Title:
  Touchpad speed scales with multimonitor size per axis

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-driver-synaptics/+bug/726832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs