File 0001-Fix-MobileTextActionsToolBar.qml-with-Qt-5.9.patch of Package plasma-framework
From 637cf011e87fcaf167d3e5dbfa7f15ece2998317 Mon Sep 17 00:00:00 2001
From: Wolfgang Bauer <wbauer@tmo.at>
Date: Tue, 28 May 2019 07:21:10 +0200
Subject: [PATCH] Fix MobileTextActionsToolBar.qml with Qt 5.9
The "icon" property group only exists since Qt 5.10.
References: boo#1136473
---
.../plasmacomponents3/private/MobileTextActionsToolBar.qml | 3 ---
1 file changed, 3 deletions(-)
diff --git a/src/declarativeimports/plasmacomponents3/private/MobileTextActionsToolBar.qml b/src/declarativeimports/plasmacomponents3/private/MobileTextActionsToolBar.qml
index d4df4f1c8..8c95edb87 100644
--- a/src/declarativeimports/plasmacomponents3/private/MobileTextActionsToolBar.qml
+++ b/src/declarativeimports/plasmacomponents3/private/MobileTextActionsToolBar.qml
@@ -58,7 +58,6 @@ Popup {
contentItem: RowLayout {
ToolButton {
focusPolicy: Qt.NoFocus
- icon.name: "edit-cut"
visible: controlRoot.selectedText.length > 0
onClicked: {
controlRoot.cut();
@@ -66,7 +65,6 @@ Popup {
}
ToolButton {
focusPolicy: Qt.NoFocus
- icon.name: "edit-copy"
visible: controlRoot.selectedText.length > 0
onClicked: {
controlRoot.copy();
@@ -74,7 +72,6 @@ Popup {
}
ToolButton {
focusPolicy: Qt.NoFocus
- icon.name: "edit-paste"
onClicked: {
controlRoot.paste();
}
--
2.16.4