bar: workspaces active indicator tweak
Decrease size by 2 (px?) with 1 margin to make it seem the same size as occupied
This commit is contained in:
parent
435f077f98
commit
02b80265d3
1 changed files with 4 additions and 4 deletions
|
|
@ -23,10 +23,10 @@ Rectangle {
|
||||||
property real offset: Math.min(leading, trailing)
|
property real offset: Math.min(leading, trailing)
|
||||||
|
|
||||||
clip: true
|
clip: true
|
||||||
x: vertical ? 0 : offset
|
x: vertical ? 1 : offset + 1
|
||||||
y: vertical ? offset : 0
|
y: vertical ? offset + 1 : 1
|
||||||
width: vertical ? BarConfig.sizes.innerHeight : size
|
width: (vertical ? BarConfig.sizes.innerHeight : size) - 2
|
||||||
height: vertical ? size : BarConfig.sizes.innerHeight
|
height: (vertical ? size : BarConfig.sizes.innerHeight) - 2
|
||||||
color: Appearance.colours.mauve
|
color: Appearance.colours.mauve
|
||||||
radius: Appearance.rounding.full
|
radius: Appearance.rounding.full
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue