summaryrefslogtreecommitdiffstats
path: root/examples/checkbox
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-03-30 00:56:00 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-03-30 00:56:00 +0200
commit707de9d788dc3c49d4ac57a19afac1bb938b78d9 (patch)
treea1f38efa232742f375afae751d433276a83f7e49 /examples/checkbox
parent472fbdf1875e82bc89ac0bbd4b2ff09cae1d9620 (diff)
downloadiced-707de9d788dc3c49d4ac57a19afac1bb938b78d9.tar.gz
iced-707de9d788dc3c49d4ac57a19afac1bb938b78d9.tar.bz2
iced-707de9d788dc3c49d4ac57a19afac1bb938b78d9.zip
Introduce support for `Font` attributes
Diffstat (limited to 'examples/checkbox')
-rw-r--r--examples/checkbox/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/checkbox/src/main.rs b/examples/checkbox/src/main.rs
index 77111490..c5f3c134 100644
--- a/examples/checkbox/src/main.rs
+++ b/examples/checkbox/src/main.rs
@@ -3,7 +3,7 @@ use iced::font::{self, Font};
use iced::widget::{checkbox, column, container};
use iced::{Application, Command, Element, Length, Settings, Theme};
-const ICON_FONT: Font = Font::Name("icons");
+const ICON_FONT: Font = Font::with_name("icons");
pub fn main() -> iced::Result {
Example::run(Settings::default())