Skip to content

Commit

Permalink
make button selection bolder, clean out unused gfx
Browse files Browse the repository at this point in the history
  • Loading branch information
jaames committed Apr 25, 2022
1 parent 1d108c4 commit d90e7b8
Show file tree
Hide file tree
Showing 14 changed files with 2 additions and 2 deletions.
Binary file removed Source/gfx/gfx_dialog_top.png
Binary file not shown.
Binary file removed Source/gfx/gfx_player_dpadhint_default.png
Binary file not shown.
Binary file removed Source/gfx/gfx_player_dpadhint_downpressed.png
Binary file not shown.
Binary file removed Source/gfx/gfx_player_dpadhint_leftpressed.png
Binary file not shown.
Binary file removed Source/gfx/gfx_player_dpadhint_pause.png
Binary file not shown.
Binary file removed Source/gfx/gfx_player_dpadhint_rightpressed.png
Binary file not shown.
Binary file removed Source/gfx/icon_layer.png
Binary file not shown.
Binary file removed Source/gfx/qr_rickastley.png
Binary file not shown.
Binary file removed Source/gfx/shape_button_cap_left.png
Binary file not shown.
Binary file removed Source/gfx/shape_button_cap_right.png
Binary file not shown.
Binary file modified Source/gfx/shape_button_cap_topleft_selected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Source/gfx/shape_button_default_selected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Source/gfx/shape_button_folderselect_selected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions Source/scenes/Home.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function HomeScreen:init()
end

function HomeScreen:setupSprites()
local viewButton = Button(PLAYDATE_W / 2, PLAYDATE_H - 60, 196, 44, '%HOME_VIEW%')
local viewButton = Button(PLAYDATE_W / 2, PLAYDATE_H - 60, 196, 48, '%HOME_VIEW%')
viewButton.autoWidth = true
viewButton:setIcon('./gfx/icon_view')
viewButton:setAnchor('center', 'top')
Expand All @@ -18,7 +18,7 @@ function HomeScreen:setupSprites()
end)
self.viewButton = viewButton

local settingsButton = Button(PLAYDATE_W + 6, -6, 128, 42, '%HOME_SETTINGS%')
local settingsButton = Button(PLAYDATE_W + 6, -8, 128, 44, '%HOME_SETTINGS%')
settingsButton.variant = 'settings'
settingsButton.autoWidth = true
settingsButton:setIcon('./gfx/icon_settings')
Expand Down

0 comments on commit d90e7b8

Please sign in to comment.