remove tab selection

This commit is contained in:
bao-qian
2016-05-22 19:16:39 +01:00
parent 38cf74d83b
commit 4c21a68139
5 changed files with 4 additions and 18 deletions

View File

@@ -26,7 +26,6 @@ namespace Wox.ViewModel
private readonly JsonStrorage<Settings> _storage;
private readonly Dictionary<ISettingProvider, Control> _featureControls = new Dictionary<ISettingProvider, Control>();
public Tab SelectedTab { get; set; } = Tab.General;
#region general
public List<Language> Languages => InternationalizationManager.Instance.LoadAvailableLanguages();
public IEnumerable<int> MaxResultsRange => Enumerable.Range(2, 16);
@@ -296,15 +295,5 @@ namespace Wox.ViewModel
{
_storage.Save();
}
public enum Tab
{
General = 0,
Plugin = 1,
Theme = 2,
Hotkey = 3,
Proxy = 4,
About = 5
}
}
}