Skip to content

Commit

Permalink
std-widgets: fixed down arrow on fluent scroll bar cannot be pressed
Browse files Browse the repository at this point in the history
  • Loading branch information
FloVanGH committed Nov 6, 2024
1 parent 9f183ff commit f9aac9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/compiler/widgets/fluent/scrollview.slint
Original file line number Diff line number Diff line change
Expand Up @@ -168,15 +168,15 @@ export component ScrollView {
width: 14px;
x: flickable.width + flickable.x - self.width;
y: flickable.y;
height: flickable.height;
height: flickable.height - horizontal-bar.height;
horizontal: false;
maximum: flickable.viewport-height - flickable.height;
page-size: flickable.height;
}

horizontal-bar := ScrollBar {
enabled: root.enabled;
width: flickable.width;
width: flickable.width - vertical-bar.width;
height: 14px;
y: flickable.height + flickable.y - self.height;
x: flickable.x;
Expand Down

0 comments on commit f9aac9e

Please sign in to comment.