mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 07:09:56 +00:00
mi-preview: ensure that natural-size >= min-size
This commit is contained in:
parent
dcecf6c348
commit
faa74e09b9
1 changed files with 2 additions and 0 deletions
|
@ -69,6 +69,7 @@ public class MediaInfo.Preview : DrawingArea {
|
|||
if (ratio != 0.0) {
|
||||
minimal_width = 16;
|
||||
natural_width = (int)(alloc_height * ratio);
|
||||
natural_width = int.max (minimal_width, natural_width);
|
||||
} else {
|
||||
minimal_width = natural_width = 0;
|
||||
}
|
||||
|
@ -79,6 +80,7 @@ public class MediaInfo.Preview : DrawingArea {
|
|||
if (ratio != 0.0) {
|
||||
minimal_height = 12;
|
||||
natural_height = (int)(alloc_width / ratio);
|
||||
natural_height = int.max (minimal_height, natural_height);
|
||||
} else {
|
||||
minimal_height = natural_height = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue