configurable groupSpacing for gap between groups and gradient border
This commit is contained in:
parent
e29853cbb6
commit
3e78384433
2 changed files with 9 additions and 6 deletions
|
|
@ -33,6 +33,7 @@ QtObject {
|
|||
property int barPadding: 8
|
||||
property int barSpacing: 12
|
||||
property int moduleSpacing: 4
|
||||
property int groupSpacing: 6
|
||||
property int radius: 4
|
||||
property int screenRadius: 15
|
||||
|
||||
|
|
@ -71,6 +72,8 @@ QtObject {
|
|||
root.barSpacing = data.barSpacing;
|
||||
if (data.moduleSpacing !== undefined)
|
||||
root.moduleSpacing = data.moduleSpacing;
|
||||
if (data.groupSpacing !== undefined)
|
||||
root.groupSpacing = data.groupSpacing;
|
||||
if (data.radius !== undefined)
|
||||
root.radius = data.radius;
|
||||
if (data.screenRadius !== undefined)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue