Skip to content

Commit 8d809d3

Browse files
authored
Use 3x icons
1 parent d5193f0 commit 8d809d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/init.luau

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ local TOOLTIP_HEIGHT: number = 16
8484
local TOOLTIP_OFFSET: number = -5 -- From to
8585

8686
-- Topbar icons
87-
local ARROW_IMAGE_OPEN: string = "rbxasset://textures/ui/TopBar/inventoryOn.png"
88-
local ARROW_IMAGE_CLOSE: string = "rbxasset://textures/ui/TopBar/inventoryOff.png"
87+
local ARROW_IMAGE_OPEN: string = "rbxasset://textures/ui/TopBar/inventoryOn@3x.png"
88+
local ARROW_IMAGE_CLOSE: string = "rbxasset://textures/ui/TopBar/inventoryOff@3x.png"
8989
-- local ARROW_HOTKEY: { Enum.KeyCode } = { Enum.KeyCode.Backquote, Enum.KeyCode.DPadUp } --TODO: Hookup '~' too?
9090

9191
-- Hotbar slots
@@ -160,7 +160,7 @@ local inventoryIcon: any = Icon.new()
160160
:setName("Inventory")
161161
:setImage(ARROW_IMAGE_OPEN, "Selected")
162162
:setImage(ARROW_IMAGE_CLOSE, "Deselected")
163-
:setImageScale(1)
163+
:setImageScale(1.1)
164164
:setCaption("Inventory")
165165
:bindToggleKey(Enum.KeyCode.Backquote)
166166
:autoDeselect(false)

0 commit comments

Comments
 (0)