updated components
Python / lint-format (pull_request) Successful in 41s
Python / test (pull_request) Successful in 1m9s
Lint & Format (Rust) / lint-format (pull_request) Successful in 2m42s
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 20s

This commit is contained in:
2026-06-06 00:49:19 +02:00
parent 82518006c3
commit 65c56bc598
13 changed files with 969 additions and 140 deletions
@@ -141,14 +141,14 @@ Item {
id: zoomSlider
Layout.fillWidth: true
Layout.preferredHeight: 30
Layout.preferredHeight: Appearance.padding.larger * 3
from: 1.0
implicitHeight: 30
implicitHeight: Appearance.padding.larger * 3
to: 5.0
value: cropRectLoader.item ? cropRectLoader.item.zoom : 1.0
onMoved: {
delegate.zoomClipRect(value);
onInteraction: value => {
delegate.zoomClipRect(1 + (value * 4));
wrapper.changesMade = true;
}
}