Ubuntu Pastebin

Paste from josharenson at Tue, 21 Jun 2016 17:15:29 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
=== modified file 'qml/Greeter/SessionsList.qml'
--- qml/Greeter/SessionsList.qml	2016-06-16 17:32:00 +0000
+++ qml/Greeter/SessionsList.qml	2016-06-21 00:07:56 +0000
@@ -50,12 +50,20 @@
             delegate: OptionSelectorDelegate {
                 objectName: "sessionDelegate" + index
                 iconSource: icon_url
-                text: display
+                colourImage: true
+                assetColour: theme.palette.normal.raisedSecondaryText
+                text: " "//display
+                Text {
+                    anchors.centerIn: parent
+                    text: display
+                    color: theme.palette.normal.raisedText
+                }
+                //                text: display
                 selected: key === initiallySelectedSession
             }
Download as text