From 61e94b5487c65d733d8cca59609ec6dd2733a2ad Mon Sep 17 00:00:00 2001 From: raven02 Date: Sat, 20 Apr 2013 20:03:13 +0800 Subject: [PATCH] Fix oversize language button in small screen (3.5inch) --- UI/MenuScreens.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/MenuScreens.cpp b/UI/MenuScreens.cpp index f8fe8d1980..a6141466b0 100644 --- a/UI/MenuScreens.cpp +++ b/UI/MenuScreens.cpp @@ -685,7 +685,7 @@ void SystemScreen::render() { UICheckBox(GEN_ID, x, y += stride, s->T("Show Debug Statistics"), ALIGN_TOPLEFT, &g_Config.bShowDebugStats); UICheckBox(GEN_ID, x, y += stride, s->T("Show FPS"), ALIGN_TOPLEFT, &g_Config.bShowFPSCounter); - VGrid vlang(530, 100, dp_yres - 50, 10, 10); + VGrid vlang(500, 100, dp_yres - 50, 10, 10); for (size_t i = 0; i < langs_.size(); i++) { std::string code;