mirror of https://github.com/stella-emu/stella.git
Make dynamically resizeable dialogs take 95% of available space.
This commit is contained in:
parent
6099530ca4
commit
731a76e1a9
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue