diff options
author | Marvin W <git@larma.de> | 2023-08-24 20:18:26 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2023-09-24 19:51:33 +0200 |
commit | 9eafe4139d6b2c0cabe3c77a903d6ae931a26975 (patch) | |
tree | 7a1fa0a2a5fc25b9b8dfe2688a9f622fbd742d70 /main/src/ui/widgets/fixed_ratio_picture.vala | |
parent | 2fba24ccae13e832bd38ff9c7fea71c1a802603d (diff) | |
download | dino-9eafe4139d6b2c0cabe3c77a903d6ae931a26975.tar.gz dino-9eafe4139d6b2c0cabe3c77a903d6ae931a26975.zip |
Fix build on some Vala compiler versions
See https://gitlab.gnome.org/GNOME/vala/-/issues/1474 and https://gitlab.gnome.org/GNOME/vala/-/issues/1478
Diffstat (limited to 'main/src/ui/widgets/fixed_ratio_picture.vala')
-rw-r--r-- | main/src/ui/widgets/fixed_ratio_picture.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/ui/widgets/fixed_ratio_picture.vala b/main/src/ui/widgets/fixed_ratio_picture.vala index 79c60141..3e83ec0c 100644 --- a/main/src/ui/widgets/fixed_ratio_picture.vala +++ b/main/src/ui/widgets/fixed_ratio_picture.vala @@ -8,7 +8,7 @@ class Dino.Ui.FixedRatioPicture : Gtk.Widget { public int max_height { get; set; default = int.MAX; } public File file { get { return inner.file; } set { inner.file = value; } } public Gdk.Paintable paintable { get { return inner.paintable; } set { inner.paintable = value; } } -#if GTK_4_8 && VALA_0_58 +#if GTK_4_8 && (VALA_0_56_GREATER_5 || VALA_0_58) public Gtk.ContentFit content_fit { get { return inner.content_fit; } set { inner.content_fit = value; } } #endif private Gtk.Picture inner = new Gtk.Picture(); @@ -85,4 +85,4 @@ class Dino.Ui.FixedRatioPicture : Gtk.Widget { inner.unparent(); base.dispose(); } -}
\ No newline at end of file +} |