mirror of
https://github.com/developersu/ClearClock.git
synced 2025-05-14 19:20:26 +03:00
Fix shadow sampling issue
This commit is contained in:
parent
053e62baf4
commit
a02ea7e091
2 changed files with 6 additions and 6 deletions
|
@ -38,7 +38,7 @@ QtLayouts.RowLayout {
|
||||||
QtControls.SpinBox {
|
QtControls.SpinBox {
|
||||||
id: radiusSpinBox
|
id: radiusSpinBox
|
||||||
from: 0
|
from: 0
|
||||||
to: 25
|
to: 50
|
||||||
value: radiusValue
|
value: radiusValue
|
||||||
|
|
||||||
onValueChanged: {
|
onValueChanged: {
|
||||||
|
@ -55,7 +55,7 @@ QtLayouts.RowLayout {
|
||||||
QtControls.SpinBox {
|
QtControls.SpinBox {
|
||||||
id: offsetXSpinBox
|
id: offsetXSpinBox
|
||||||
from: 0
|
from: 0
|
||||||
to: 25
|
to: 100
|
||||||
value: offsetXValue
|
value: offsetXValue
|
||||||
|
|
||||||
onValueChanged: {
|
onValueChanged: {
|
||||||
|
@ -66,7 +66,7 @@ QtLayouts.RowLayout {
|
||||||
QtControls.SpinBox {
|
QtControls.SpinBox {
|
||||||
id: offsetYSpinBox
|
id: offsetYSpinBox
|
||||||
from: 0
|
from: 0
|
||||||
to: 25
|
to: 100
|
||||||
value: offsetYValue
|
value: offsetYValue
|
||||||
|
|
||||||
onValueChanged: {
|
onValueChanged: {
|
||||||
|
|
|
@ -88,7 +88,7 @@ Item {
|
||||||
radius: plasmoid.configuration.clockShadowRadius
|
radius: plasmoid.configuration.clockShadowRadius
|
||||||
horizontalOffset: plasmoid.configuration.clockShadowXOffset
|
horizontalOffset: plasmoid.configuration.clockShadowXOffset
|
||||||
verticalOffset: plasmoid.configuration.clockShadowYOffset
|
verticalOffset: plasmoid.configuration.clockShadowYOffset
|
||||||
samples: 10
|
samples: plasmoid.configuration.clockShadowRadius*2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -112,7 +112,7 @@ Item {
|
||||||
radius: plasmoid.configuration.dayShadowRadius
|
radius: plasmoid.configuration.dayShadowRadius
|
||||||
horizontalOffset: plasmoid.configuration.dayShadowXOffset
|
horizontalOffset: plasmoid.configuration.dayShadowXOffset
|
||||||
verticalOffset: plasmoid.configuration.dayShadowYOffset
|
verticalOffset: plasmoid.configuration.dayShadowYOffset
|
||||||
samples: 10
|
samples: plasmoid.configuration.dayShadowYOffset*2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -139,7 +139,7 @@ Item {
|
||||||
radius: plasmoid.configuration.dateShadowRadius
|
radius: plasmoid.configuration.dateShadowRadius
|
||||||
horizontalOffset: plasmoid.configuration.dateShadowXOffset
|
horizontalOffset: plasmoid.configuration.dateShadowXOffset
|
||||||
verticalOffset: plasmoid.configuration.dateShadowYOffset
|
verticalOffset: plasmoid.configuration.dateShadowYOffset
|
||||||
samples: 10
|
samples: plasmoid.configuration.dateShadowYOffset*2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue