diff options
author | Omer Akram <om26er@ubuntu.com> | 2011-11-28 23:04:02 +0500 |
---|---|---|
committer | Omer Akram <om26er@ubuntu.com> | 2011-11-28 23:04:02 +0500 |
commit | 732f7babd65aca54e69e3c7e7bf6510a7a4d0e55 (patch) | |
tree | 65fdd1dadfbf96714852e06314aea3a284c6befc | |
parent | 651e17daa69dd4491bbdc3f7a574373dd91a0541 (diff) | |
download | ayatana-indicator-sound-732f7babd65aca54e69e3c7e7bf6510a7a4d0e55.tar.gz ayatana-indicator-sound-732f7babd65aca54e69e3c7e7bf6510a7a4d0e55.tar.bz2 ayatana-indicator-sound-732f7babd65aca54e69e3c7e7bf6510a7a4d0e55.zip |
* debian/patches/fix-864405.patch:
- Clicking on left 25% of "Pause/Play" circle clicks "Previous".
(LP: #864405)
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | debian/patches/fix-864405.patch | 22 | ||||
-rw-r--r-- | debian/patches/series | 1 |
3 files changed, 31 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index b0f85a8..e2a0831 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +indicator-sound (0.7.9.1-0ubuntu2) precise; urgency=low + + * debian/patches/fix-864405.patch: + - Clicking on left 25% of "Pause/Play" circle clicks "Previous". + (LP: #864405) + + -- Omer Akram <om26er@ubuntu.com> Mon, 28 Nov 2011 23:03:20 +0500 + indicator-sound (0.7.9.1-0ubuntu1) precise; urgency=low * New upstream release. diff --git a/debian/patches/fix-864405.patch b/debian/patches/fix-864405.patch new file mode 100644 index 0000000..fe78d0f --- /dev/null +++ b/debian/patches/fix-864405.patch @@ -0,0 +1,22 @@ +--- a/src/transport-widget.c 2011-09-09 12:57:51 +0000 ++++ b/src/transport-widget.c 2011-11-16 18:34:46 +0000 +@@ -561,15 +561,15 @@ + { + TransportAction event = TRANSPORT_ACTION_NO_ACTION; + +- if (x > 67 && x < 112 ++ if (x > 57 && x < 102 + && y > 12 && y < 40){ + event = TRANSPORT_ACTION_PREVIOUS; + } +- else if (x > 111 && x < 153 ++ else if (x > 101 && x < 143 + && y > 5 && y < 47){ + event = TRANSPORT_ACTION_PLAY_PAUSE; + } +- else if (x > 152 && x < 197 ++ else if (x > 142 && x < 187 + && y > 12 && y < 40){ + event = TRANSPORT_ACTION_NEXT; + } + diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..911625a --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +fix-864405.patch |