Skip to content

Commit

Permalink
Merge branch 'dev' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Triky313 committed Aug 15, 2023
2 parents 81e3cfc + 268fcd0 commit ed89d85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ A tool to easily read auction house data with a loot logger, damage meter, dunge
- Installing **Npcap** Free Edition (v1.6 or higher) [here](https://npcap.com/#download) (For Game tracking)

**Download the Statistics Analysis Tool**
- [**DOWNLOAD**](https://github.com/Triky313/AlbionOnline-StatisticsAnalysis/releases/download/v6.0.0/StatisticsAnalysis-AlbionOnline-v6.0.0-x64.zip)
- [**DOWNLOAD**](https://github.com/Triky313/AlbionOnline-StatisticsAnalysis/releases/download/v6.3.1/StatisticsAnalysis-AlbionOnline-v6.3.1-x64.zip)
Unzip the `.zip` file and start `StatisticsAnalysisTool.exe` with a double click. You may not be able to see the `.exe`. Don't worry, usually it's the file with the icon.

![tool_dir](https://user-images.githubusercontent.com/14247773/170473306-4dcc629e-384e-41b2-ada8-657cabe1b472.png)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using System.Reflection;
using System.Text;
using System.Text.Json;
using System.Threading.Tasks;
using System.Windows;

namespace StatisticsAnalysisTool.Common.UserSettings;
Expand All @@ -19,7 +18,7 @@ public class SettingsController

public static void SetWindowSettings(WindowState windowState, double height, double width, double left, double top)
{
if(windowState != WindowState.Maximized)
if (windowState != WindowState.Maximized)
{
CurrentSettings.MainWindowHeight = double.IsNegativeInfinity(height) || double.IsPositiveInfinity(height) ? 0 : height;
CurrentSettings.MainWindowWidth = double.IsNegativeInfinity(width) || double.IsPositiveInfinity(width) ? 0 : width;
Expand Down

0 comments on commit ed89d85

Please sign in to comment.