Skip to content

Commit

Permalink
Fixed frame modifier browser display
Browse files Browse the repository at this point in the history
All frames are now shown properly
  • Loading branch information
purrie committed Mar 10, 2023
1 parent e7efb9f commit fd25d9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modifier/frame.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ impl Modifier for Frame {
}
row = row.push(
button(iced::widget::image(img.preview()).content_fit(iced::ContentFit::Contain))
.on_press(FrameMessage::FrameSelected(total)),
.on_press(FrameMessage::FrameSelected(total)).width(Length::Fill),
);
total += 1;
count += 1;
Expand Down

0 comments on commit fd25d9b

Please sign in to comment.