style: apply csharpier formatting to cycle files

This commit is contained in:
2026-05-21 14:46:19 +02:00
parent 636a62814f
commit 81123ccddf
8 changed files with 54 additions and 23 deletions
+7 -3
View File
@@ -173,15 +173,19 @@ internal sealed class Tabs : ISettingsTab
if (tab.EnableNotificationSound)
{
using var indent = ImRaii.PushIndent(10.0f);
var soundPreview = $"{HellionStrings.Tabs_NotificationSound_Option} {tab.NotificationSoundId}";
var soundPreview =
$"{HellionStrings.Tabs_NotificationSound_Option} {tab.NotificationSoundId}";
using var combo = ImRaii.Combo($"##notif-sound-{i}", soundPreview);
if (combo.Success)
{
for (uint s = 1; s <= 16; s++)
{
if (ImGui.Selectable(
if (
ImGui.Selectable(
$"{HellionStrings.Tabs_NotificationSound_Option} {s}",
tab.NotificationSoundId == s))
tab.NotificationSoundId == s
)
)
tab.NotificationSoundId = s;
}
}