1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 12:50:04 -04:00

Add 💻 emoji to the system, theme selector

This commit is contained in:
Emil Ernerfeldt
2024-09-19 11:56:54 +02:00
parent b8d008177a
commit 902c54e534

View File

@@ -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");
});
}
}