Skip to content

Commit

Permalink
allow retoggling on process error
Browse files Browse the repository at this point in the history
  • Loading branch information
aspriddell committed Nov 7, 2024
1 parent 87c6cb8 commit a8ed14d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DragonFruit.OnionFruit/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ private async Task ToggleSession()

TorSession.TorSessionState.Disconnecting => new ToolbarContent(false, false, Brushes.DarkOrange, "Tor Disconnecting"),

TorSession.TorSessionState.BlockedProcess => new ToolbarContent(false, false, Brushes.Black, "Tor process failed to start"),
TorSession.TorSessionState.BlockedProcess => new ToolbarContent(false, true, Brushes.Black, "Tor process failed to start"),
TorSession.TorSessionState.BlockedProxy => new ToolbarContent(false, false, Brushes.Black, "Failed to change proxy settings"),

TorSession.TorSessionState.KillSwitchTriggered => new ToolbarContent(true, true, Brushes.DeepPink, "Tor Process Killed (Killswitch enabled)"),
Expand Down

0 comments on commit a8ed14d

Please sign in to comment.