Skip to content

Commit

Permalink
canceling hs-dir selection no longer keeps process alive
Browse files Browse the repository at this point in the history
  • Loading branch information
epix37 committed Jun 18, 2014
1 parent 8f936d7 commit d163c8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Hearthstone Deck Tracker/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ public MainWindow()
var result = dialog.ShowDialog();
if (result != true)
{
return;
Close();
}
_config.HearthstoneDirectory = Path.GetDirectoryName(dialog.FileName);
_xmlManagerConfig.Save("config.xml", _config);
Expand Down
2 changes: 1 addition & 1 deletion Hearthstone Deck Tracker/Windows/OverlayWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<local:HearthstoneTextBlock Visibility="Hidden" x:Name="LblTurnTime" Text="90" Canvas.Top="378" Canvas.Left="353" FontSize="32" />
<local:HearthstoneTextBlock Visibility="Hidden" x:Name="LblPlayerTurnTime" Text="0" Canvas.Top="338" Canvas.Left="418" FontSize="24" />

<ScrollViewer x:Name="DebugViewer" Height="100" Width="400" Canvas.Left="200"
<ScrollViewer x:Name="DebugViewer" Height="100" Width="400" Canvas.Left="200" Visibility="Hidden"
Background="Beige" Foreground="Aqua" Opacity="75"
VerticalScrollBarVisibility="Visible" >
<TextBox x:Name="LblDebugLog" Text="Test" TextWrapping="Wrap" FontSize="14" Foreground="Aqua"/>
Expand Down

0 comments on commit d163c8c

Please sign in to comment.