- Add patch to fix build with gpsd: * 0001-Fix-build-with-gpsd-3.23.1.patch - Add patch to fix window thumbnails if dmabuf is not supported (kde#428284): * 0002-libtaskmanager-Don-t-request-dmabuf-if-not-supported.patch - Add patches from Plasma/5.23 branch: * 0001-SVN_SILENT-made-messages-.desktop-file-always-resolv.patch * 0002-shell-panel-Fix-ability-to-type-in-textfield.patch * 0003-SVN_SILENT-made-messages-.desktop-file-always-resolv.patch * 0004-PipeWire-Make-sure-thumbnails-properly-use-dmabuf-ag.patch * 0005-SVN_SILENT-made-messages-.desktop-file-always-resolv.patch * 0006-Klipper-Handle-incoming-UTF-8-mime-types.patch * 0007-Klipper-Guard-against-broken-data-fetches.patch * 0008-pipewire-Properly-compare-pipewire-versions-using-QV.patch * 0009-PipeWire-Include-defines-for-older-PipeWire-versions.patch * 0010-sddm-theme-fix-default-username-font-size.patch - Add patch to fix XEmbed context menus (kde#442758) * 0011-Revert-xembed-adapt-to-changes-in-KNotifications.patch OBS-URL: https://build.opensuse.org/request/show/921296 OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/plasma5-workspace?expand=0&rev=615
31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
From d26c976e923d4a343a157b06972646dad998f506 Mon Sep 17 00:00:00 2001
|
|
From: Nate Graham <nate@kde.org>
|
|
Date: Tue, 21 Sep 2021 14:35:53 -0600
|
|
Subject: [PATCH 10/11] sddm-theme: fix default username font size
|
|
|
|
It was being set to [config file value] rather than [config file value]+2
|
|
which is the side used in the login screen theme.
|
|
|
|
CCBUG: 442650
|
|
(cherry picked from commit b52cdf9bb6394519347bb2cc4e179e1cf80eac8c)
|
|
---
|
|
sddm-theme/Login.qml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/sddm-theme/Login.qml b/sddm-theme/Login.qml
|
|
index dff905a22..1cec0c7f2 100644
|
|
--- a/sddm-theme/Login.qml
|
|
+++ b/sddm-theme/Login.qml
|
|
@@ -19,7 +19,7 @@ SessionManagementScreen {
|
|
property int visibleBoundary: mapFromItem(loginButton, 0, 0).y
|
|
onHeightChanged: visibleBoundary = mapFromItem(loginButton, 0, 0).y + loginButton.height + PlasmaCore.Units.smallSpacing
|
|
|
|
- property int fontSize: parseInt(config.fontSize)
|
|
+ property int fontSize: parseInt(config.fontSize) + 2
|
|
|
|
signal loginRequest(string username, string password)
|
|
|
|
--
|
|
2.33.0
|
|
|