Horizon

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ HEAD  →  ?path2? @ 1
/Configuration/Configuration.cs
@@ -1,5 +1,4 @@
using System.ComponentModel;
using System.IO;
using System.Runtime.CompilerServices;
using System.Xml.Serialization;
using Configuration.Annotations;
@@ -19,40 +18,6 @@
 
private bool _showBalloonTooltips = true;
 
private bool _networkSharing = false;
 
private NotifyFilters _notifyFilters = NotifyFilters.LastWrite | NotifyFilters.Attributes;
 
public NotifyFilters NotifyFilters
{
get => _notifyFilters;
set
{
if (value == _notifyFilters)
{
return;
}
 
_notifyFilters = value;
OnPropertyChanged();
}
}
 
public bool NetworkSharing
{
get => _networkSharing;
set
{
if (value == _networkSharing)
{
return;
}
 
_networkSharing = value;
OnPropertyChanged();
}
}
 
public bool ShowBalloonTooltips
{
get => _showBalloonTooltips;