Make dynamically resizeable dialogs take 95% of available space.

This commit is contained in:
Stephen Anthony 2018-08-29 13:36:01 -02:30
parent 6099530ca4
commit 731a76e1a9
1 changed files with 2 additions and 2 deletions

View File

@ -810,8 +810,8 @@ bool Dialog::getDynamicBounds(uInt32& w, uInt32& h) const
}
else
{
w = uInt32(0.9 * r.width());
h = uInt32(0.9 * r.height());
w = uInt32(0.95 * r.width());
h = uInt32(0.95 * r.height());
return true;
}
}