Skip to content

Commit

Permalink
Log messages are not displayed when in the background
Browse files Browse the repository at this point in the history
  • Loading branch information
2dust committed Jul 8, 2024
1 parent 449bb40 commit c2928be
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions v2rayN/v2rayN/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,10 @@ private void OnProgramStarted(object state, bool timeout)

private void UpdateHandler(bool notify, string msg)
{
if (!_showInTaskbar)
{
return;
}
_noticeHandler?.SendMessage(msg);
if (notify)
{
Expand Down

0 comments on commit c2928be

Please sign in to comment.