diff options
| author | 2023-04-11 05:56:34 +0200 | |
|---|---|---|
| committer | 2023-04-11 05:56:34 +0200 | |
| commit | c794d8ba788b388d4fb7a8ef1bba208b98e1bd02 (patch) | |
| tree | d3cf5a6cf4391c73272111ea14c9753ee495873e /examples/tour/src/main.rs | |
| parent | cf9d8e01048845ee503a62eb55e634a76a0e9163 (diff) | |
| download | iced-c794d8ba788b388d4fb7a8ef1bba208b98e1bd02.tar.gz iced-c794d8ba788b388d4fb7a8ef1bba208b98e1bd02.tar.bz2 iced-c794d8ba788b388d4fb7a8ef1bba208b98e1bd02.zip | |
Collapse `Font` import in `tour` example
Diffstat (limited to '')
| -rw-r--r-- | examples/tour/src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/tour/src/main.rs b/examples/tour/src/main.rs index 40ab33c2..9ee386d4 100644 --- a/examples/tour/src/main.rs +++ b/examples/tour/src/main.rs @@ -5,8 +5,7 @@ use iced::widget::{ scrollable, slider, text, text_input, toggler, vertical_space, }; use iced::widget::{Button, Column, Container, Slider}; -use iced::Font; -use iced::{Color, Element, Length, Renderer, Sandbox, Settings}; +use iced::{Color, Element, Font, Length, Renderer, Sandbox, Settings}; const ICON_FONT: Font = Font::External { name: "Icons", |
