minimal debugger sizes adjusted again

This commit is contained in:
thrust26 2017-12-04 15:59:51 +01:00
parent aef15b44b4
commit 260a8b7bb0
2 changed files with 5 additions and 3 deletions

View File

@ -77,7 +77,7 @@ CartRamWidget::CartRamWidget(
myDesc->setList(sl);
addFocusWidget(myDesc);
ypos += myDesc->getHeight() + myLineHeight + 4;
ypos += myDesc->getHeight() + myFontHeight / 2;
// Add RAM widget
xpos = x + _font.getStringWidth("xxxx");

View File

@ -46,10 +46,12 @@ namespace GUI {
class DebuggerDialog : public Dialog
{
public:
// Note: these sizes make sure that all major tabs are fully visible
// cart dependend information (e.g. DPC+) may require more space
enum {
kSmallFontMinW = 1090, kSmallFontMinH = 720,
kMediumFontMinW = 1160, kMediumFontMinH = 790,
kLargeFontMinW = 1160, kLargeFontMinH = 920
kMediumFontMinW = 1160, kMediumFontMinH = 770,
kLargeFontMinW = 1160, kLargeFontMinH = 870
};
DebuggerDialog(OSystem& osystem, DialogContainer& parent,