remove not needed "and"

This commit is contained in:
TheCakeChicken 2019-05-12 19:36:04 +01:00
parent 234dcf5039
commit 4402cd5cfd
1 changed files with 1 additions and 1 deletions
create/controllers

View File

@ -7,7 +7,7 @@ local toolsController = require("tevgit:create/controllers/tool.lua")
uiController.create = function(className, parent, properties, style)
local gui = engine.construct(className, parent, properties)
themeController.add(gui, style and style or "default")
themeController.add(gui, style or "default")
return gui
end