From d819f9c7b80a9df240f69d848565773928e4f365 Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Tue, 28 Mar 2017 15:18:20 -0230 Subject: [PATCH] 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. --- src/debugger/gui/DebuggerDialog.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debugger/gui/DebuggerDialog.hxx b/src/debugger/gui/DebuggerDialog.hxx index 6d0f5a50d..8b72071ff 100644 --- a/src/debugger/gui/DebuggerDialog.hxx +++ b/src/debugger/gui/DebuggerDialog.hxx @@ -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,