aboutsummaryrefslogtreecommitdiffstats
path: root/core.lua
diff options
context:
space:
mode:
Diffstat (limited to 'core.lua')
-rw-r--r--core.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/core.lua b/core.lua
index a93ed1d..bb5295a 100644
--- a/core.lua
+++ b/core.lua
@@ -59,7 +59,7 @@ function keyboard.isBindingDown(bind)
return keyboard.key == bind.key and modifiersDown
end
-local function makeTabable(id)
+local function makeCyclable(id)
keyboard.tryGrab(id)
if hasKeyFocus(id) then
if keyboard.isBindingDown(keyboard.cycle.prev) then
@@ -146,7 +146,7 @@ return {
isHot = isHot,
isActive = isActive,
hasKeyFocus = hasKeyFocus,
- makeTabable = makeTabable,
+ makeCyclable = makeCyclable,
style = require((...):match("(.-)[^%.]+$") .. '.style-default'),
color = color,