AusweisApp/0001-fix-qml-error-with-qt6.6.patch
John Paul Adrian Glaubitz 625a063cee - New upstream release
+ Version 2.2.1
    - Visual adjustments and optimization of the graphical user interface.
    - Optimization of accessibility and keyboard usability.
    - Prevention of the display of external content in
      the graphical user interface.
    - Support for smartphones with Android 15 where
      optimized memory management has been activated.
    - Support for 16 KB page sizes on Android.
    - Stabilization of the iOS SDK during fast restarts.
    - Correction of the behavior when using Qt 6.6.3.
    - Avoidance of a log file within the container in the container SDK.
    - Update of the Android NDK to r27b (27.1.12297006).
    - Update of the Android SDK Platform to Android 15 (API level 35).
    - Update of OpenSSL to version 3.3.2.
- Drop patches for issues fixed upstream
  + 0001-fix-qml-error-with-qt6.6.patch

OBS-URL: https://build.opensuse.org/package/show/security/AusweisApp?expand=0&rev=19
2024-09-11 11:56:03 +00:00

52 lines
1.7 KiB
Diff

From d01d6ee97b7e1fbb804e12614004f9c5eab7fee3 Mon Sep 17 00:00:00 2001
From: Lars Schmertmann <SmallLars@t-online.de>
Date: Thu, 11 Jul 2024 16:35:09 +0200
Subject: [PATCH] Fix QML error with Qt 6.6.3
Got QML warning: DetachedLogView.qml:16:2: Cannot override FINAL property
---
.../qml/modules/FeedbackView/+desktop/DetachedLogView.qml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/ui/qml/modules/FeedbackView/+desktop/DetachedLogView.qml b/src/ui/qml/modules/FeedbackView/+desktop/DetachedLogView.qml
index 953a3766..db7e446a 100644
--- a/src/ui/qml/modules/FeedbackView/+desktop/DetachedLogView.qml
+++ b/src/ui/qml/modules/FeedbackView/+desktop/DetachedLogView.qml
@@ -12,8 +12,8 @@ import Governikus.View
Rectangle {
id: root
+ readonly property int controlRadius: 15
readonly property int horizontalPadding: 18
- readonly property int radius: 15
readonly property int spacing: 10
readonly property int verticalPadding: 6
@@ -55,7 +55,7 @@ Rectangle {
Layout.preferredWidth: 200
horizontalPadding: root.horizontalPadding
model: LogModel.logFileNames
- radius: root.radius
+ radius: root.controlRadius
textStyle: logTextStyle
verticalPadding: root.verticalPadding
@@ -64,7 +64,7 @@ Rectangle {
border.width: 1
color: Style.color.transparent
drawShadow: false
- radius: root.radius
+ radius: root.controlRadius
}
onCurrentIndexChanged: LogModel.setLogFile(currentIndex)
@@ -286,7 +286,7 @@ Rectangle {
Layout.minimumWidth: -1
borderWidth: 1
horizontalPadding: root.horizontalPadding
- radius: root.radius
+ radius: root.controlRadius
spacing: root.spacing
tintIcon: true
verticalPadding: root.verticalPadding