GNOME Bugzilla – Bug 689261
Differentiate touch rings from touch strips
Last modified: 2012-12-20 09:18:48 UTC
Using "up" and "down" on a ring is ambiguous, better use "CW" or "CCW" to indicate the circular motion on touch rings. Differentiating rings from strips is therefore required to use the appropriate terminology depending on the type of elevator.
Created attachment 230172 [details] [review] Proposed patch
Review of attachment 230172 [details] [review]: Looks good otherwise. ::: plugins/wacom/gsd-wacom-manager.c @@ +1182,3 @@ wbutton->id, + (wbutton->type == WACOM_TABLET_BUTTON_TYPE_RING) ? (dir == GTK_DIR_UP ? " 'CCW'" : " 'CW'") : + (wbutton->type == WACOM_TABLET_BUTTON_TYPE_STRIP) ? (dir == GTK_DIR_UP ? " 'up'" : " 'down'") : "", You'll need to split that up, it's getting unreadable.
Created attachment 231884 [details] [review] Updated patch after review (In reply to comment #2) > Review of attachment 230172 [details] [review]: > [...] > You'll need to split that up, it's getting unreadable. Done.
Review of attachment 231884 [details] [review]: Looks good.
Comment on attachment 231884 [details] [review] Updated patch after review Pushed in git master