Adjust spacing a bit to look less cluttered.

This commit is contained in:
Unknown W. Brackets 2013-04-06 19:05:49 -07:00
parent 03e276c3e2
commit 481c450718

View File

@ -200,7 +200,7 @@ void MenuScreen::render() {
ui_draw2d.DrawTextShadow(UBUNTU24, PPSSPP_GIT_VERSION, dp_xres + xoff, 85, 0xFFFFFFFF, ALIGN_RIGHT | ALIGN_BOTTOM);
ui_draw2d.SetFontScale(1.0f, 1.0f);
VLinear vlinear(dp_xres + xoff, 100, 20);
VGrid vgrid_recent(-xoff, 100, 480, 20, 20);
VGrid vgrid_recent(-xoff + 40, 100, 480, 40, 20);
if (UIButton(GEN_ID, vlinear, w, "Load...", ALIGN_RIGHT)) {
#if defined(USING_QT_UI)
@ -252,7 +252,7 @@ void MenuScreen::render() {
int recentW = 350;
if (g_Config.recentIsos.size()) {
ui_draw2d.DrawText(UBUNTU24, "Recent", -xoff, 80, 0xFFFFFFFF, ALIGN_BOTTOMLEFT);
ui_draw2d.DrawText(UBUNTU24, "Recent", -xoff + 20, 80, 0xFFFFFFFF, ALIGN_BOTTOMLEFT);
}
for (size_t i = 0; i < g_Config.recentIsos.size(); i++) {
std::string filename;