Skip to content

Commit

Permalink
Add 💻 emoji to the system, theme selector
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Sep 19, 2024
1 parent b8d0081 commit 902c54e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/egui/src/memory/theme.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ impl ThemePreference {
ui.horizontal(|ui| {
ui.selectable_value(self, Self::Light, "☀ Light");
ui.selectable_value(self, Self::Dark, "🌙 Dark");
ui.selectable_value(self, Self::System, "System");
ui.selectable_value(self, Self::System, "💻 System");
});
}
}

0 comments on commit 902c54e

Please sign in to comment.