diff options
| author | jussi | 2024-12-11 00:21:28 +0200 |
|---|---|---|
| committer | jussi | 2024-12-11 00:21:28 +0200 |
| commit | b4b81f68c4274a6b4d0b5039b83459a1345ca6da (patch) | |
| tree | 9f4f82d979c075b4be939107e725eb4f0e398549 /examples/raygui_extensions/property_list.lua | |
| parent | 14fbd73660b14fb5af3f8973ec09896c80b63ab2 (diff) | |
| download | reilua-enhanced-b4b81f68c4274a6b4d0b5039b83459a1345ca6da.tar.gz reilua-enhanced-b4b81f68c4274a6b4d0b5039b83459a1345ca6da.tar.bz2 reilua-enhanced-b4b81f68c4274a6b4d0b5039b83459a1345ca6da.zip | |
Gui Icons enumeration.
Diffstat (limited to 'examples/raygui_extensions/property_list.lua')
| -rw-r--r-- | examples/raygui_extensions/property_list.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/raygui_extensions/property_list.lua b/examples/raygui_extensions/property_list.lua index d4c5126..72e58f7 100644 --- a/examples/raygui_extensions/property_list.lua +++ b/examples/raygui_extensions/property_list.lua @@ -48,9 +48,9 @@ end local function setGroupText( text, active ) if active then - return RL.GuiIconText( 120, text ) + return RL.GuiIconText( RL.ICON_ARROW_DOWN_FILL, text ) else - return RL.GuiIconText( 119, text ) + return RL.GuiIconText( RL.ICON_ARROW_RIGHT_FILL, text ) end end |
