You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's more a new feature request, I'd like to allow the user to stop the stream of data (e.g. the user already find the line was looking for) .
The change could be in NlogViewer.xaml.cs
`
private bool _isPausing = false;
[Description("Pause the receiving of data"), Category("Data")]
[TypeConverter(typeof(BooleanConverter))]
public bool Pause
{
get { return _isPausing; }
set { _isPausing = value; }
}
`
and in method LogReceived the _isPausing can be checked.
If you'd like I can push a branch with the changes.
The text was updated successfully, but these errors were encountered:
It's more a new feature request, I'd like to allow the user to stop the stream of data (e.g. the user already find the line was looking for) .
The change could be in
NlogViewer.xaml.cs
`
private bool _isPausing = false;
[Description("Pause the receiving of data"), Category("Data")]
[TypeConverter(typeof(BooleanConverter))]
public bool Pause
{
get { return _isPausing; }
set { _isPausing = value; }
}
`
and in method LogReceived the _isPausing can be checked.
If you'd like I can push a branch with the changes.
The text was updated successfully, but these errors were encountered: