diff options
Diffstat (limited to 'examples/gtk3/vala/simple-bar/widget/Bar.vala')
-rw-r--r-- | examples/gtk3/vala/simple-bar/widget/Bar.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gtk3/vala/simple-bar/widget/Bar.vala b/examples/gtk3/vala/simple-bar/widget/Bar.vala index 28b32ef..0746969 100644 --- a/examples/gtk3/vala/simple-bar/widget/Bar.vala +++ b/examples/gtk3/vala/simple-bar/widget/Bar.vala @@ -84,7 +84,7 @@ class Media : Gtk.Box { }; Astal.widget_set_class_names(cover, {"Cover"}); - player.bind_property("title", label, "label", BindingFlags.SYNC_CREATE, (_, src, ref trgt) => { + player.bind_property("metadata", label, "label", BindingFlags.SYNC_CREATE, (_, src, ref trgt) => { var title = player.title; var artist = player.artist; trgt.set_string(@"$artist - $title"); |