mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix excessive scroll
This commit is contained in:
parent
ccfe3a2c08
commit
987281516a
1 changed files with 1 additions and 1 deletions
|
@ -653,7 +653,7 @@ void GameBrowser::Refresh() {
|
|||
LinearLayout *gridOptionColumn = new LinearLayout(ORIENT_VERTICAL, new LinearLayoutParams(64.0, 64.0f));
|
||||
gridOptionColumn->Add(new Spacer(12.0));
|
||||
gridOptionColumn->Add(new Choice(ImageID("I_GEAR"), new LayoutParams(64.0f, 64.0f)))->OnClick.Handle(this, &GameBrowser::GridSettingsClick);
|
||||
LinearLayout *grid = new LinearLayout(ORIENT_HORIZONTAL);
|
||||
LinearLayout *grid = new LinearLayout(ORIENT_HORIZONTAL, new LinearLayoutParams(FILL_PARENT, WRAP_CONTENT));
|
||||
gameList_->ReplaceLayoutParams(new LinearLayoutParams(FILL_PARENT, WRAP_CONTENT, 0.75));
|
||||
grid->Add(gameList_);
|
||||
grid->Add(gridOptionColumn);
|
||||
|
|
Loading…
Add table
Reference in a new issue