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
1 changed files with 1 additions and 1 deletions

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