aboutsummaryrefslogtreecommitdiffstats
path: root/core.lua
diff options
context:
space:
mode:
authorMatthias Richter <vrld@vrld.org>2012-02-22 23:33:54 +0100
committerMatthias Richter <vrld@vrld.org>2012-02-22 23:33:54 +0100
commit370c10c78770bc3c1a70a086b238e7a8e5197fb9 (patch)
tree379101b354515c4bda8f0a36a4a4f4141e143662 /core.lua
parentd6ed0f93011a2a877ccea4955d4db071710594f5 (diff)
downloadQuickie-370c10c78770bc3c1a70a086b238e7a8e5197fb9.tar.gz
Quickie-370c10c78770bc3c1a70a086b238e7a8e5197fb9.tar.bz2
Quickie-370c10c78770bc3c1a70a086b238e7a8e5197fb9.tar.xz
Quickie-370c10c78770bc3c1a70a086b238e7a8e5197fb9.zip
Rename makeTabable() to makeCyclable()
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,