Browse Source

Log messages are not displayed when in the background

pull/5377/head
2dust 5 months ago
parent
commit
c2928be35d
  1. 4
      v2rayN/v2rayN/ViewModels/MainWindowViewModel.cs

4
v2rayN/v2rayN/ViewModels/MainWindowViewModel.cs

@ -613,6 +613,10 @@ namespace v2rayN.ViewModels
private void UpdateHandler(bool notify, string msg)
{
if (!_showInTaskbar)
{
return;
}
_noticeHandler?.SendMessage(msg);
if (notify)
{

Loading…
Cancel
Save