mirror of
https://github.com/strawberrymusicplayer/strawberry
synced 2024-12-15 10:14:43 +01:00
Check for empty image
This commit is contained in:
parent
2a92af1e09
commit
d936a080db
@ -334,8 +334,12 @@ void PlayingWidget::SetImage(const QImage &image) {
|
||||
}
|
||||
|
||||
void PlayingWidget::ScaleCover() {
|
||||
pixmap_cover_ = QPixmap::fromImage(ImageUtils::ScaleAndPad(image_original_, cover_loader_options_.scale_output_image_, cover_loader_options_.pad_output_image_, cover_loader_options_.desired_height_));
|
||||
|
||||
QImage image = ImageUtils::ScaleAndPad(image_original_, cover_loader_options_.scale_output_image_, cover_loader_options_.pad_output_image_, cover_loader_options_.desired_height_);
|
||||
if (image.isNull()) pixmap_cover_ = QPixmap();
|
||||
else pixmap_cover_ = QPixmap::fromImage(image);
|
||||
update();
|
||||
|
||||
}
|
||||
|
||||
void PlayingWidget::SetHeight(int height) {
|
||||
|
Loading…
Reference in New Issue
Block a user