From 151a4ec29e33622b9bded28d637388fa10c71aa4 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Tue, 14 Nov 2023 22:46:36 +0100 Subject: [PATCH] Update gain_gui_vizia for upstream vizia changes --- plugins/examples/gain_gui_vizia/src/editor.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/examples/gain_gui_vizia/src/editor.rs b/plugins/examples/gain_gui_vizia/src/editor.rs index 43b9bc7a..2f4b1f60 100644 --- a/plugins/examples/gain_gui_vizia/src/editor.rs +++ b/plugins/examples/gain_gui_vizia/src/editor.rs @@ -39,9 +39,8 @@ pub(crate) fn create( VStack::new(cx, |cx| { Label::new(cx, "Gain GUI") - .font_family(vec![FamilyOwned::Name(String::from( - assets::NOTO_SANS_THIN, - ))]) + .font_family(vec![FamilyOwned::Name(String::from(assets::NOTO_SANS))]) + .font_weight(FontWeightKeyword::Thin) .font_size(30.0) .height(Pixels(50.0)) .child_top(Stretch(1.0))