Skip to content

Commit

Permalink
Fix compilation errors.
Browse files Browse the repository at this point in the history
* Compilation looks like it was broken by 7d14e42
  • Loading branch information
hydra committed Oct 24, 2024
1 parent 613abc7 commit 287ef8e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions examples/side_bar/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ fn main() -> iced::Result {
TabBarExample::update,
TabBarExample::view,
)
.font(iced_aw::BOOTSTRAP_FONT_BYTES)
.font(ICON_BYTES)
.run()
.font(iced_fonts::REQUIRED_FONT_BYTES)
.font(ICON_BYTES)
.run()
}

#[derive(Default)]
Expand Down
2 changes: 1 addition & 1 deletion examples/tabs/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl From<Icon> for char {

fn main() -> iced::Result {
iced::application("Tabs example", TabBarExample::update, TabBarExample::view)
.font(iced_aw::BOOTSTRAP_FONT_BYTES)
.font(iced_fonts::REQUIRED_FONT_BYTES)
.font(ICON_BYTES)
.run()
}
Expand Down

0 comments on commit 287ef8e

Please sign in to comment.