Skip to content

Commit

Permalink
Fixed|UI|Home: Packages dialog's minimum layout height
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Apr 24, 2016
1 parent c9efbae commit 83ec39c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion doomsday/apps/client/src/ui/dialogs/packagesdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,10 @@ PackagesDialog::PackagesDialog(String const &titleText)
new SignalAction(this, SLOT(refreshPackages())));

// The individual menus will be scrolling independently.
leftArea() .setContentSize(d->menu->rule().width(), d->menu->rule().height() + d->gameTitle->rule().height());
leftArea() .setContentSize(d->menu->rule().width(),
OperatorRule::maximum(d->menu->rule().height(),
d->nothingSelected->rule().height()) +
d->gameTitle->rule().height());
rightArea().setContentSize(d->browser->rule().width(), d->browser->rule().height());

refreshPackages();
Expand Down

0 comments on commit 83ec39c

Please sign in to comment.