Skip to content

Commit

Permalink
browser: one more spacing change
Browse files Browse the repository at this point in the history
  • Loading branch information
vgmoose committed Dec 31, 2018
1 parent c86887a commit 21943f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/FileBrowser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void FileBrowser::render(Element* parent)
if (selected >= 0)
{
// draw the cursor for this file
SDL_Rect dimens4 = { this->x + (selected % 5)*220 + 100, this->y + (selected / 5)*200 + 100, 210, 210};
SDL_Rect dimens4 = { this->x + (selected % 5)*220 + 60, this->y + (selected / 5)*200 + 100, 210, 210};
SDL_SetRenderDrawColor(parent->renderer, 0xaa, 0xaa, 0xaa, 0xff);
SDL_RenderDrawRect(parent->renderer, &dimens4);
}
Expand Down

0 comments on commit 21943f2

Please sign in to comment.