Fix the progress bar colours.
Forgot to add the alpha value, which made the objects fully transparent.
This commit is contained in:
parent
f001feb9b2
commit
328e5541f6
1 changed files with 6 additions and 6 deletions
|
@ -30,7 +30,7 @@
|
|||
w = "(width)"
|
||||
h = 41
|
||||
border_thickness = 1
|
||||
border_colour = "188, 176, 136"
|
||||
border_colour = "188, 176, 136, 255"
|
||||
[/rectangle]
|
||||
|
||||
# Inner black border, with gray filling.
|
||||
|
@ -40,8 +40,8 @@
|
|||
w = "(width - 2)"
|
||||
h = 39
|
||||
border_thickness = 1
|
||||
border_colour = "0, 0, 0"
|
||||
fill_colour = "21, 22, 24"
|
||||
border_colour = "0, 0, 0, 255"
|
||||
fill_colour = "21, 22, 24, 255"
|
||||
[/rectangle]
|
||||
|
||||
# 3D effect at upper side.
|
||||
|
@ -51,7 +51,7 @@
|
|||
w = "(((width - 4) * percentage) / 100)"
|
||||
h = 2
|
||||
border_thickness = 0
|
||||
fill_colour = "79, 103, 123"
|
||||
fill_colour = "79, 103, 123, 255"
|
||||
[/rectangle]
|
||||
|
||||
# Main bar
|
||||
|
@ -61,7 +61,7 @@
|
|||
w = "(((width - 4) * percentage) / 100)"
|
||||
h = 33
|
||||
border_thickness = 0
|
||||
fill_colour = "21, 53, 80"
|
||||
fill_colour = "21, 53, 80, 255"
|
||||
[/rectangle]
|
||||
|
||||
# 3D effect at lower side.
|
||||
|
@ -71,7 +71,7 @@
|
|||
w = "(((width - 4) * percentage) / 100)"
|
||||
h = 2
|
||||
border_thickness = 0
|
||||
fill_colour = "10, 26, 40"
|
||||
fill_colour = "10, 26, 40, 255"
|
||||
[/rectangle]
|
||||
|
||||
[/draw]
|
||||
|
|
Loading…
Add table
Reference in a new issue