From 0bd2ea178f01ee3278bb5d2df0a3e12cc93f6db8 Mon Sep 17 00:00:00 2001 From: David Edmundson Date: Mon, 13 May 2019 09:54:44 +0100 Subject: [PATCH] Add test for buttons with icon height --- tests/components/button.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/components/button.qml b/tests/components/button.qml index a645537ab..3382f099c 100644 --- a/tests/components/button.qml +++ b/tests/components/button.qml @@ -96,13 +96,17 @@ Rectangle } Label { - text: "button and textfield should have the same height" + text: "button (with or without icon) and textfield should have the same height" } RowLayout { PlasmaComponents.Button { text: "test" } + PlasmaComponents.Button { + iconSource: "application-menu" + text: "test" + } PlasmaComponents.TextField { } }