Increased text scroller height in About window

This commit is contained in:
Dimitris Panokostas 2020-05-13 20:08:25 +02:00
parent 5ab485cc4d
commit 077b2498c4
2 changed files with 3 additions and 3 deletions

View file

@ -40,7 +40,7 @@ void InitPanelAbout(const struct _ConfigCategory& category)
textBoxScrollArea->setBackgroundColor(gui_baseCol);
textBoxScrollArea->setBaseColor(gui_baseCol);
textBoxScrollArea->setWidth(category.panel->getWidth() - DISTANCE_BORDER * 2);
textBoxScrollArea->setHeight(100);
textBoxScrollArea->setHeight(200);
textBoxScrollArea->setBorderSize(1);
auto pos_y = DISTANCE_BORDER;

View file

@ -22,8 +22,8 @@
#define GETBDM(x) (((x) - (((x) / 10000) * 10000)) / 100)
#define GETBDD(x) ((x) % 100)
#define AMIBERRYVERSION _T("Amiberry v3.1.4 beta (2020-05-10)")
#define AMIBERRYDATE MAKEBD(2020, 5, 10)
#define AMIBERRYVERSION _T("Amiberry v3.1.4 beta (2020-05-13)")
#define AMIBERRYDATE MAKEBD(2020, 5, 13)
extern std::string get_version_string();