Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion neothesia/src/icons.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(unused)]

pub fn cone_icon() -> &'static str {
"\u{F2D2}"
}
Expand Down Expand Up @@ -34,7 +36,6 @@ pub fn plus_icon() -> &'static str {
"\u{F4FE}"
}

#[allow(unused)]
pub fn balloon_icon() -> &'static str {
"\u{f709}"
}
Expand Down
1 change: 1 addition & 0 deletions neothesia/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ impl Neothesia {
self.context.window.set_fullscreen(Some(f));
}
}
return;
}
}
WindowEvent::RedrawRequested => {
Expand Down
2 changes: 1 addition & 1 deletion neothesia/src/scene/menu_scene/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ impl MenuScene {

if neo_btn()
.size(btn_w, btn_h)
.icon(icons::cone_icon())
.icon(icons::balloon_icon())
.color([100; 3])
.tooltip("FreePlay")
.build(ui)
Expand Down