From 818bfa3d057f5550f05f107fe9f76997818cb5f6 Mon Sep 17 00:00:00 2001 From: alrito28 <100717534+alrito28@users.noreply.github.com> Date: Sat, 25 May 2024 23:02:09 +0200 Subject: [PATCH] Update MainView.qml --- contents/ui/MainView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contents/ui/MainView.qml b/contents/ui/MainView.qml index fdb6c49..b1e6cd1 100644 --- a/contents/ui/MainView.qml +++ b/contents/ui/MainView.qml @@ -117,7 +117,7 @@ Item { id: nameLabel x: main.width / 2 - width / 2 //This centeres the Text y: isTop ? main.height - height - 135 * PlasmaCore.Units.devicePixelRatio : 80 * PlasmaCore.Units.devicePixelRatio - text: plasmoid.configuration.enableGreeting && plasmoid.configuration.customGreeting ? plasmoid.configuration.customGreeting : plasmoid.configuration.enableGreeting ? 'Hi, ' + kuser.fullName : i18n("%1@%2", kuser.loginName, kuser.host) + text: plasmoid.configuration.enableGreeting && plasmoid.configuration.customGreeting ? plasmoid.configuration.customGreeting : plasmoid.configuration.enableGreeting ? i18n("Hi, ") + kuser.fullName : i18n("%1@%2", kuser.loginName, kuser.host) color: textColor font.family: textFont font.pixelSize: 16 * PlasmaCore.Units.devicePixelRatio