mirror of https://github.com/stella-emu/stella.git
minimal debugger sizes adjusted again
This commit is contained in:
parent
aef15b44b4
commit
260a8b7bb0
|
@ -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");
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue