From 7add1344123f925caa007ff4d69ccff653be98a2 Mon Sep 17 00:00:00 2001 From: laserpants Date: Fri, 27 May 2016 17:13:43 +0300 Subject: [PATCH] set button min. height --- components/raisedbutton.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/raisedbutton.cpp b/components/raisedbutton.cpp index b28929b..79f49a5 100644 --- a/components/raisedbutton.cpp +++ b/components/raisedbutton.cpp @@ -89,6 +89,8 @@ RaisedButton::RaisedButton(QWidget *parent) Q_D(RaisedButton); d->init(); + + setMinimumHeight(42); } RaisedButton::~RaisedButton()