aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 7 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0a4aa0d..478d058 100644
--- a/README.md
+++ b/README.md
@@ -17,6 +17,11 @@ Quickie is an [immediate mode gui][IMGUI] library for [LÖVE][LOVE]
-- checkboxes have only a `checked' status
local checkbox = {checked = false}
+ function love.load()
+ -- disable tabbing through the widgets
+ gui.core.disableKeyFocus()
+ end
+
function love.update(dt)
-- widgets are defined by simply calling them. usually a widget returns true if
-- if its value changed or if it was activated (click on button, ...)
@@ -37,8 +42,8 @@ Quickie is an [immediate mode gui][IMGUI] library for [LÖVE][LOVE]
end
function love.keypressed(key,code)
- -- forward keyboard events to the gui. If you don't want widget tabbing and
- -- input widgets, skip this line
+ -- forward keyboard events to the gui. If you don't want keyboard support
+ -- skip this line
gui.core.keyboard.pressed(key, code)
end