mirror of https://github.com/stella-emu/stella.git
Fixed overflow of text/UI items in large font mode in the debugger;
we need just a little more height. There's similar issues for the smallest font, but I need to think about that one a little more, since many people are affected if we change the window size at the smallest setting.
This commit is contained in:
parent
3a8967f349
commit
d819f9c7b8
|
@ -44,7 +44,7 @@ class DebuggerDialog : public Dialog
|
|||
enum {
|
||||
kSmallFontMinW = 1080, kSmallFontMinH = 720,
|
||||
kMediumFontMinW = 1280, kMediumFontMinH = 860,
|
||||
kLargeFontMinW = 1300, kLargeFontMinH = 940
|
||||
kLargeFontMinW = 1300, kLargeFontMinH = 980
|
||||
};
|
||||
|
||||
DebuggerDialog(OSystem& osystem, DialogContainer& parent,
|
||||
|
|
Loading…
Reference in New Issue