-- @/lua/ge/extensions/ui/apps.lua:236
local function isAppOnLayout (appDirective, layout)
local layouts = getLayouts()
if layouts[layout] == nil then
log('D', '', 'layout not existing', layout)
return
end
for k,v in pairs(layouts[layout]) do
if v.directive == appDirective then
return true
end
end
return false
end