Compare commits

...

6 Commits

Author SHA1 Message Date
Sanjay 5393b77131
Merge pull request #67 from UndecidedSource/master
Keep borders square for simplicity
2020-03-24 14:45:20 -04:00
UndecidedFactor 5ab00b1a43
Update window.lua 2020-03-22 14:01:04 -04:00
UndecidedFactor 7e1895fd6a
Update window.lua 2020-03-22 13:59:16 -04:00
UndecidedFactor cdaa993ade
Update window.lua 2020-03-22 13:54:14 -04:00
UndecidedFactor adebd303a6
Merge pull request #1 from UndecidedSource/patch-1
Update ui.lua
2020-03-22 13:33:35 -04:00
UndecidedFactor b341d889f6
Update ui.lua 2020-03-22 13:30:08 -04:00
2 changed files with 7 additions and 5 deletions

View File

@ -79,6 +79,8 @@ function controller.generateProperties()
size = guiCoord(0.55, -15, 1, 0),
position = guiCoord(0, 0, 0, 0),
fontSize = 18,
backgroundAlpha = 1,
borderAlpha = 0,
text = v.property,
align = enums.align.topRight
}, "backgroundText")

View File

@ -29,8 +29,8 @@ return {
text = text,
fontSize = 16,
align = enums.align.middle,
borderRadius = 3,
borderAlpha = 0.25,
borderRadius = 0,
borderAlpha = 1,
zIndex = 5000,
handleEvents = false,
visible = false
@ -58,7 +58,7 @@ return {
local btn = create("guiFrame", parent, {
size = size,
position = position,
borderRadius = 3,
borderRadius = 0,
hoverCursor = "fa:s-hand-pointer"
}, theme)
@ -97,7 +97,7 @@ return {
name = "titleBar",
position = guiCoord(0, -1, 0, -4),
size = guiCoord(1, 2, 0, 25),
borderRadius = 4,
borderRadius = 0,
hoverCursor = "fa:s-hand-pointer"
}, themer.types.primary)
@ -181,7 +181,7 @@ return {
size = guiCoord(0.4, 0, 0.4, 0),
position = guiCoord(0.3, 0, 0.3, 0),
cropChildren = false,
borderRadius = 5,
borderRadius = 0,
handleEvents = false
}, themer.types.primary)