Try to fix the bug in compatibility

This commit is contained in:
Quan Guo 2016-05-18 19:19:06 +02:00
parent 3fa219fc27
commit 79525e92d0
1 changed files with 7 additions and 5 deletions

View File

@ -34,6 +34,12 @@ local capi = {
-- disable for now.
-- It seems there is not way to pass err handling function into the delayed_call()
local function debuginfo(message)
message = message or "No information available"
nid = naughty.notify({ text = tostring(message), timeout = 10 })
end
local delayed_call = (type(timer) ~= 'table' and require("gears.timer").delayed_call)
local view_only_func
@ -41,7 +47,7 @@ local toggle_tag_func
local jump_to_func
if type(awful.client.object.toggle_tag) == 'function' then
if type(awful.client.object) == 'table' then
view_only_func = function (tag) tag:view_only() end
toggle_tag_func = function (t, c) c:toggle_tag(t) end
jump_to_func = function(c) c:jump_to() end
@ -95,10 +101,6 @@ local revelation = {
}
local function debuginfo(message)
message = message or "No information available"
nid = naughty.notify({ text = tostring(message), timeout = 10 })
end
-- Executed when user selects a client from expose view.
--