style: apply csharpier formatting to cycle files
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user