# HG changeset patch # User sheepluva # Date 1335597930 -7200 # Node ID 576c453822bf54e1943235c261e65e63ee60b5c9 # Parent d831a0b7abf1ae4a6fe9f4b353fa72d335e8f409 fix for issue 186 ("Screen gets messed up when selecting Hand Drawn Map") diff -r d831a0b7abf1 -r 576c453822bf QTfrontend/ui/widget/mapContainer.cpp --- a/QTfrontend/ui/widget/mapContainer.cpp Sat Apr 28 00:08:12 2012 -0400 +++ b/QTfrontend/ui/widget/mapContainer.cpp Sat Apr 28 09:25:30 2012 +0200 @@ -117,7 +117,8 @@ //gbThemes->setStyleSheet("padding: 0px"); // doesn't work - stylesheet is set with icon mapLayout->addWidget(gbThemes, 0, 2, 3, 1); - + // disallow row to be collapsed (so it can't get ignored when Qt applies rowSpan of gbThemes) + mapLayout->setRowMinimumHeight(2, 13); QVBoxLayout * gbTLayout = new QVBoxLayout(gbThemes); gbTLayout->setContentsMargins(0, 0, 0 ,0); gbTLayout->setSpacing(0);