From 2e820dbdef63615b8ce2ae049a80f8bd484d9c63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Thu, 29 Jan 2015 00:51:14 +0100 Subject: [PATCH] do not wrap text in deco button drag source The text cannot be aligned to the icon (makes it move around when dragging the icon) nor can we just allocate two line (makes single lines detached from the icon) BUG: 343411 REVIEW: 122301 FIXED-IN: 5.2.1 --- kcmkwin/kwindecoration/qml/Buttons.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kcmkwin/kwindecoration/qml/Buttons.qml b/kcmkwin/kwindecoration/qml/Buttons.qml index a8e1c96181..7c6997c330 100644 --- a/kcmkwin/kwindecoration/qml/Buttons.qml +++ b/kcmkwin/kwindecoration/qml/Buttons.qml @@ -169,7 +169,7 @@ Item { anchors.left: parent.left anchors.right: parent.right elide: Text.ElideRight - wrapMode: Text.Wrap + wrapMode: Text.NoWrap } MouseArea { id: dragArea