# HG changeset patch # User Chris Cannam # Date 1435672689 -3600 # Node ID 5d4730da027664807887eea7f50c536b83919d8a # Parent 50940a7425aec6309bb26156b6f5e155d71f3fa1 Use a more sensible min height for OS/X diff -r 50940a7425ae -r 5d4730da0276 widgets/PropertyBox.cpp --- a/widgets/PropertyBox.cpp Tue Jun 30 14:16:22 2015 +0100 +++ b/widgets/PropertyBox.cpp Tue Jun 30 14:58:09 2015 +0100 @@ -518,8 +518,10 @@ cb->blockSignals(false); #ifdef Q_OS_MAC - // Crashes on startup without this, for some reason - cb->setMinimumSize(QSize(10, 10)); + // Crashes on startup without this, for some reason; also + // prevents combo boxes from getting weirdly squished + // vertically + cb->setMinimumSize(QSize(10, cb->font().pixelSize() * 2)); #endif break;