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 {
|
||||
id: radiusSpinBox
|
||||
from: 0
|
||||
to: 25
|
||||
to: 50
|
||||
value: radiusValue
|
||||
|
||||
onValueChanged: {
|
||||
|
@ -55,7 +55,7 @@ QtLayouts.RowLayout {
|
|||
QtControls.SpinBox {
|
||||
id: offsetXSpinBox
|
||||
from: 0
|
||||
to: 25
|
||||
to: 100
|
||||
value: offsetXValue
|
||||
|
||||
onValueChanged: {
|
||||
|
@ -66,7 +66,7 @@ QtLayouts.RowLayout {
|
|||
QtControls.SpinBox {
|
||||
id: offsetYSpinBox
|
||||
from: 0
|
||||
to: 25
|
||||
to: 100
|
||||
value: offsetYValue
|
||||
|
||||
onValueChanged: {
|
||||
|
|
|
@ -88,7 +88,7 @@ Item {
|
|||
radius: plasmoid.configuration.clockShadowRadius
|
||||
horizontalOffset: plasmoid.configuration.clockShadowXOffset
|
||||
verticalOffset: plasmoid.configuration.clockShadowYOffset
|
||||
samples: 10
|
||||
samples: plasmoid.configuration.clockShadowRadius*2
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -112,7 +112,7 @@ Item {
|
|||
radius: plasmoid.configuration.dayShadowRadius
|
||||
horizontalOffset: plasmoid.configuration.dayShadowXOffset
|
||||
verticalOffset: plasmoid.configuration.dayShadowYOffset
|
||||
samples: 10
|
||||
samples: plasmoid.configuration.dayShadowYOffset*2
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -139,7 +139,7 @@ Item {
|
|||
radius: plasmoid.configuration.dateShadowRadius
|
||||
horizontalOffset: plasmoid.configuration.dateShadowXOffset
|
||||
verticalOffset: plasmoid.configuration.dateShadowYOffset
|
||||
samples: 10
|
||||
samples: plasmoid.configuration.dateShadowYOffset*2
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue