Skip to content

Commit

Permalink
fix: backdrop view display incorrectly
Browse files Browse the repository at this point in the history
  • Loading branch information
Kosette committed Apr 30, 2024
1 parent c862d9c commit db947ec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.4.9-1

### Hotfix

- Fixed backdrop view not display correctly

## 0.4.9

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/ui/image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pub fn setimage(id: String) -> Revealer {
let (sender, receiver) = async_channel::bounded::<String>(1);

let image = gtk::Picture::new();
image.set_halign(gtk::Align::Center);
image.set_halign(gtk::Align::Fill);
image.set_content_fit(gtk::ContentFit::Cover);
let revealer = gtk::Revealer::builder()
.transition_type(gtk::RevealerTransitionType::Crossfade)
Expand Down

0 comments on commit db947ec

Please sign in to comment.