From bcfc86174cec88d9444bd9804ab7a4083c5a50fe Mon Sep 17 00:00:00 2001 From: TheWendyPower Date: Fri, 14 Sep 2018 15:32:12 -0600 Subject: [PATCH] Edited sddm so the reboot and shutdown buttons will show --- src/usr/share/sddm/themes/lubuntu/Main.qml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/usr/share/sddm/themes/lubuntu/Main.qml b/src/usr/share/sddm/themes/lubuntu/Main.qml index 5f743de..3a3dc79 100644 --- a/src/usr/share/sddm/themes/lubuntu/Main.qml +++ b/src/usr/share/sddm/themes/lubuntu/Main.qml @@ -211,6 +211,15 @@ Rectangle { anchors.right: parent.right anchors.margins: 5 spacing: 5 + + Clock { + id: clock + color: "white" + timeFont.family: "Ubuntu" + timeFont.bold: true + timeFont.pixelSize: 28 + dateFont.pixelSize: 12 + } ImageButton { id: btnReboot @@ -229,16 +238,7 @@ Rectangle { onClicked: sddm.powerOff() KeyNavigation.backtab: btnReboot; KeyNavigation.tab: prevUser } - Clock { - id: clock - anchors.margins: 5 - anchors.top: parent.top; anchors.right: parent.right - color: "white" - timeFont.family: "Ubuntu" - timeFont.bold: true - timeFont.pixelSize: 28 - dateFont.pixelSize: 12 - } + }