cleanup + fixes
This commit is contained in:
@@ -73,7 +73,7 @@ CustomListView {
|
||||
implicitHeight: root.currentItem?.implicitHeight ?? 0
|
||||
implicitWidth: root.width
|
||||
opacity: 0.08
|
||||
radius: 8
|
||||
radius: Appearance.rounding.smallest
|
||||
y: root.currentItem?.y ?? 0
|
||||
|
||||
Behavior on y {
|
||||
|
||||
@@ -7,7 +7,7 @@ ShapePath {
|
||||
id: root
|
||||
|
||||
readonly property bool flatten: wrapper.height < rounding * 2
|
||||
readonly property real rounding: Config.barConfig.rounding + 5
|
||||
readonly property real rounding: Appearance.rounding.smallest + 5
|
||||
readonly property real roundingY: flatten ? wrapper.height / 2 : rounding
|
||||
required property Wrapper wrapper
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ Item {
|
||||
root.modelData?.onClicked(root.list);
|
||||
}
|
||||
|
||||
radius: Appearance.rounding.normal
|
||||
radius: Appearance.rounding.smallest
|
||||
}
|
||||
|
||||
Item {
|
||||
|
||||
@@ -27,7 +27,7 @@ Item {
|
||||
root.onClicked();
|
||||
}
|
||||
|
||||
radius: Appearance.rounding.normal
|
||||
radius: Appearance.rounding.smallest
|
||||
}
|
||||
|
||||
RowLayout {
|
||||
|
||||
@@ -18,7 +18,7 @@ Item {
|
||||
root.modelData?.onClicked(root.list);
|
||||
}
|
||||
|
||||
radius: Appearance.rounding.normal
|
||||
radius: Appearance.rounding.smallest
|
||||
}
|
||||
|
||||
Item {
|
||||
|
||||
@@ -15,6 +15,8 @@ Item {
|
||||
max -= panels.resources.nonAnimHeight;
|
||||
if (visibilities.dashboard && panels.dashboard.x < root.x + root.implicitWidth)
|
||||
max -= panels.dashboard.nonAnimHeight;
|
||||
if (panels.popouts.currentName.startsWith("updates"))
|
||||
max -= panels.popouts.nonAnimHeight;
|
||||
return max;
|
||||
}
|
||||
required property var panels
|
||||
|
||||
Reference in New Issue
Block a user