summaryrefslogtreecommitdiff
path: root/examples/raygui_examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples/raygui_examples')
-rw-r--r--examples/raygui_examples/file_browser.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/raygui_examples/file_browser.lua b/examples/raygui_examples/file_browser.lua
index e4705a6..04d59d7 100644
--- a/examples/raygui_examples/file_browser.lua
+++ b/examples/raygui_examples/file_browser.lua
@@ -81,7 +81,7 @@ function FileBrowser:new( pos )
-- Back button.
object.backButton = Gui:Button(
Rect:new( 0, 0, iconButtonSize.x, iconButtonSize.y ),
- RL.GuiIconText( 118, "" ),
+ RL.GuiIconText( RL.ICON_ARROW_LEFT_FILL, "" ),
{ -- callbacks.
pressed = function() object:back() end
}
@@ -94,7 +94,7 @@ function FileBrowser:new( pos )
-- Search button.
object.searchToggle = Gui:Toggle(
Rect:new( 0, 0, iconButtonSize.x, iconButtonSize.y ),
- RL.GuiIconText( 42, "" ),
+ RL.GuiIconText( RL.ICON_LENS, "" ),
false, -- active.
{ -- callbacks.
pressed = function( this ) object:searchPressed( this.active ) end