aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Richter <vrld@vrld.org>2012-02-21 14:48:20 +0100
committerMatthias Richter <vrld@vrld.org>2012-02-21 14:48:20 +0100
commit77674a48300d92c6fb7db8efd25cda995ff3d060 (patch)
treed47da6ea408e27f96ba333983f2dafb02ec6dd50
parent6926699ff20a0c4249f717dae6186269e93dd460 (diff)
downloadQuickie-77674a48300d92c6fb7db8efd25cda995ff3d060.tar.gz
Quickie-77674a48300d92c6fb7db8efd25cda995ff3d060.tar.bz2
Quickie-77674a48300d92c6fb7db8efd25cda995ff3d060.tar.xz
Quickie-77674a48300d92c6fb7db8efd25cda995ff3d060.zip
Remove widget shadow when hot/active.
-rw-r--r--style-default.lua24
1 files changed, 2 insertions, 22 deletions
diff --git a/style-default.lua b/style-default.lua
index 7c85e46..5ae9dda 100644
--- a/style-default.lua
+++ b/style-default.lua
@@ -12,10 +12,6 @@ end
local function Button(state, title, x,y,w,h)
local c = color[state]
- if state ~= 'normal' then
- love.graphics.setColor(c.fg)
- love.graphics.rectangle('fill', x+3,y+3,w,h)
- end
love.graphics.setColor(c.bg)
love.graphics.rectangle('fill', x,y,w,h)
love.graphics.setColor(c.fg)
@@ -39,10 +35,6 @@ end
local function Slider(state, fraction, x,y,w,h, vertical)
local c = color[state]
- if state ~= 'normal' then
- love.graphics.setColor(c.fg)
- love.graphics.rectangle('fill', x+3,y+3,w,h)
- end
love.graphics.setColor(c.bg)
love.graphics.rectangle('fill', x,y,w,h)
@@ -59,10 +51,6 @@ end
local function Slider2D(state, fraction, x,y,w,h, vertical)
local c = color[state]
- if state ~= 'normal' then
- love.graphics.setColor(c.fg)
- love.graphics.rectangle('fill', x+3,y+3,w,h)
- end
love.graphics.setColor(c.bg)
love.graphics.rectangle('fill', x,y,w,h)
@@ -83,10 +71,6 @@ end
local function Input(state, text, cursor, x,y,w,h)
local c = color[state]
- if state ~= 'normal' then
- love.graphics.setColor(c.fg)
- love.graphics.rectangle('fill', x+3,y+3,w,h)
- end
love.graphics.setColor(c.bg)
love.graphics.rectangle('fill', x,y,w,h)
love.graphics.setColor(c.fg)
@@ -107,17 +91,13 @@ end
local function Checkbox(state, checked, x,y,w,h)
local c = color[state]
- if state ~= 'normal' then
- love.graphics.setColor(c.fg)
- love.graphics.rectangle('fill', x+3,y+3,w,h)
- end
love.graphics.setColor(c.bg)
love.graphics.rectangle('fill', x,y,w,h)
love.graphics.setColor(c.fg)
love.graphics.rectangle('line', x,y,w,h)
if checked then
- local r = math.max(math.min(w/2,h/2) - 3, 2)
- love.graphics.circle('fill', x+w/2,y+h/2,r)
+ local r = math.max(math.min(w/7,h/7), 2)
+ love.graphics.rectangle('fill', x+r,y+r, w-2*r,h-2*r)
end
end