[SCM] kdeconnect packaging branch, master, updated. debian/0.9g-1-1183-g9d69498

Maximiliano Curia maxy at moszumanska.debian.org
Fri Oct 14 14:28:47 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/kdeconnect.git;a=commitdiff;h=2b844e5

The following commit has been merged in the master branch:
commit 2b844e59daf38ffe6d6419eb87bc97ffbc2e89b3
Author: Aleix Pol <aleixpol at kde.org>
Date:   Fri Jul 17 17:20:06 2015 +0200

    Improve app mpris interface
---
 app/qml/mpris.qml | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/app/qml/mpris.qml b/app/qml/mpris.qml
index 17f0ac0..45ffa67 100644
--- a/app/qml/mpris.qml
+++ b/app/qml/mpris.qml
@@ -41,27 +41,27 @@ ColumnLayout
         Layout.fillWidth: true
         text: root.mprisInterface.nowPlaying
     }
-    Button {
-        Layout.fillWidth: true
-        text: root.mprisInterface.isPlaying ? "pause" : "play"
-        onClicked: root.mprisInterface.sendAction("PlayPause");
-    }
     RowLayout {
         Layout.fillWidth: true
         Button {
             Layout.fillWidth: true
-            text: "<<"
+            iconName: "media-skip-backward"
             onClicked: root.mprisInterface.sendAction("Previous")
         }
         Button {
             Layout.fillWidth: true
-            text: ">>"
+            iconName: root.mprisInterface.isPlaying ? "media-playback-pause" : "media-playback-start"
+            onClicked: root.mprisInterface.sendAction("PlayPause");
+        }
+        Button {
+            Layout.fillWidth: true
+            iconName: "media-skip-forward"
             onClicked: root.mprisInterface.sendAction("Next")
         }
     }
     RowLayout {
         Layout.fillWidth: true
-        Label { text: "x" }
+        Label { text: i18n("Volume:") }
         Slider {
             value: root.mprisInterface.volume
             maximumValue: 100

-- 
kdeconnect packaging



More information about the pkg-kde-commits mailing list