From 9bfc44d787f5949e094c447951a9ebcb9c939a86 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Mon, 14 Mar 2022 16:05:39 +0100 Subject: [PATCH] Use Noto Sans Light for the GUI title --- plugins/examples/gain-gui/src/editor.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/examples/gain-gui/src/editor.rs b/plugins/examples/gain-gui/src/editor.rs index df7ec75d..9ade2534 100644 --- a/plugins/examples/gain-gui/src/editor.rs +++ b/plugins/examples/gain-gui/src/editor.rs @@ -73,6 +73,7 @@ impl IcedEditor for GainEditor { .align_items(Alignment::Center) .push( Text::new("Gain GUI") + .font(assets::NOTO_SANS_LIGHT) .size(40) .height(50.into()) .width(Length::Fill)