After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 633572 - magnifier: Mouse tracking enum values wrong
magnifier: Mouse tracking enum values wrong
Status: RESOLVED DUPLICATE of bug 629884
Product: gnome-shell
Classification: Core
Component: magnifier
unspecified
Other Linux
: Normal normal
: ---
Assigned To: gnome-shell-maint
gnome-shell-maint
Depends on:
Blocks:
 
 
Reported: 2010-10-30 19:31 UTC by Owen Taylor
Modified: 2013-12-04 18:03 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Owen Taylor 2010-10-30 19:31:25 UTC
Schema:

  <enum id="MouseTrackingMode">
    <value value="0" nick="none"/>
    <value value="1" nick="centered"/>
    <value value="2" nick="proportional"/>
    <value value="3" nick="push"/>
  </enum>

Code:


const MouseTrackingMode = {
    NONE: 0,
    CENTERED: 1,
    PUSH: 2,
    PROPORTIONAL: 3
};

Note reversal of push and proportional
Comment 1 Florian Müllner 2010-10-30 20:07:04 UTC
Yup - see for instances comment 3 in the duped bug.

*** This bug has been marked as a duplicate of bug 629884 ***