https://bugs.kde.org/show_bug.cgi?id=360105

--- Comment #8 from Rex Dieter <rdie...@math.unl.edu> ---
Here's a hack/workaround to use in the meantime (until Qt's minimumSize behaves
itself):

diff -up kcalc-15.12.3/kcalc.cpp.qt56 kcalc-15.12.3/kcalc.cpp
--- kcalc-15.12.3/kcalc.cpp.qt56        2016-03-09 17:12:50.000000000 -0600
+++ kcalc-15.12.3/kcalc.cpp     2016-03-16 08:18:05.635713639 -0500
@@ -123,7 +123,7 @@ KCalculator::KCalculator(QWidget *parent

        updateGeometry();

-       setFixedSize(minimumSize());
+       if ( ! minimumSize().isEmpty() ) setFixedSize(minimumSize());

        updateDisplay(UPDATE_FROM_CORE);

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to