Skip to content

Commit

Permalink
By default detect if pasting from clipboard is necessary.
Browse files Browse the repository at this point in the history
  • Loading branch information
ko-vasilev committed Mar 18, 2016
1 parent 90ca21f commit e08c694
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Hearthstone Collection Tracker/SettingsWindow.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using Hearthstone_Collection_Tracker.Controls;
using Hearthstone_Collection_Tracker.Internal;
using Hearthstone_Collection_Tracker.Internal.Importing;
using Hearthstone_Deck_Tracker;
using MahApps.Metro.Controls;
using MahApps.Metro.Controls.Dialogs;
using System.Collections.Generic;
Expand Down Expand Up @@ -35,6 +36,8 @@ public SettingsWindow(PluginSettings settings)
var setsOption = SetCardsManager.CollectableSets.Select(s => new KeyValuePair<string, string>(s, s)).ToList();
setsOption.Insert(0, new KeyValuePair<string, string>("All", null));
ComboboxImportingSet.ItemsSource = setsOption;

CheckboxImportPasteClipboard.IsChecked = Config.Instance.ExportPasteClipboard || !Helper.LatinLanguages.Contains(Config.Instance.SelectedLanguage);
}

private void UpdateAccountsComboBox()
Expand Down

0 comments on commit e08c694

Please sign in to comment.