Skip to content

Commit

Permalink
Arena importing message,
Browse files Browse the repository at this point in the history
ensure log namespaces are added on new line
  • Loading branch information
Epix37 committed Aug 22, 2015
1 parent 5e0755b commit 0d35d50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Hearthstone Deck Tracker/Hearthstone/Game.cs
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ public static async void NewArenaCard(string cardId)
{
var result =
await
Helper.MainWindow.ShowMessageAsync("New arena deck detected!", "", MessageDialogStyle.AffirmativeAndNegative,
Helper.MainWindow.ShowMessageAsync("New arena deck detected!", "You can change this behaviour to \"auto save&import\" or \"manual\" in [options > tracker > importing]", MessageDialogStyle.AffirmativeAndNegative,
new MetroDialogSettings {AffirmativeButtonText = "import", NegativeButtonText = "cancel"});
if(result == MessageDialogResult.Affirmative)
{
Expand Down
1 change: 1 addition & 0 deletions Hearthstone Deck Tracker/MainWindow/MainWindow_Load.cs
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,7 @@ private bool UpdateLogConfigFile()
{
foreach(var log in missing)
{
sw.WriteLine();
sw.WriteLine("[{0}]", log);
sw.WriteLine("LogLevel=1");
sw.WriteLine("FilePrinting=false");
Expand Down

0 comments on commit 0d35d50

Please sign in to comment.