From 077b2498c469413d84f19832d640234589ce1101 Mon Sep 17 00:00:00 2001 From: Dimitris Panokostas Date: Wed, 13 May 2020 20:08:25 +0200 Subject: [PATCH] Increased text scroller height in About window --- src/osdep/gui/PanelAbout.cpp | 2 +- src/osdep/target.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/osdep/gui/PanelAbout.cpp b/src/osdep/gui/PanelAbout.cpp index 9d661f49..4bc9950f 100644 --- a/src/osdep/gui/PanelAbout.cpp +++ b/src/osdep/gui/PanelAbout.cpp @@ -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; diff --git a/src/osdep/target.h b/src/osdep/target.h index 3327bbf4..70bc8512 100644 --- a/src/osdep/target.h +++ b/src/osdep/target.h @@ -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();