Skip to content

Commit

Permalink
Fix client/decal location changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mag-nus committed Nov 30, 2019
1 parent 63552a8 commit a4d55f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Source/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public MainWindow()
{
InitializeComponent();

Title += " 1.4"; // TODO: !!!!! ATTENTION ===== Update line 55 in AssemblyInfo.cs ===== ATTENTION !!!!!
Title += " 1.5"; // TODO: !!!!! ATTENTION ===== Update line 55 in AssemblyInfo.cs ===== ATTENTION !!!!!

if (Properties.Settings.Default.WindowPositionLeft > 0 && Properties.Settings.Default.WindowPositionTop > 0)
{
Expand Down Expand Up @@ -492,7 +492,7 @@ private void btnACClientLocation_Click(object sender, RoutedEventArgs e)

// Get the selected file name and display in a TextBox
if (result == true)
txtACClientLocation.Text = dialog.FileName;
Properties.Settings.Default.ACClientLocation = dialog.FileName;
}

private void btnDecalLocation_Click(object sender, RoutedEventArgs e)
Expand All @@ -510,7 +510,7 @@ private void btnDecalLocation_Click(object sender, RoutedEventArgs e)

// Get the selected file name and display in a TextBox
if (result == true)
txtDecalInjectLocation.Text = dialog.FileName;
Properties.Settings.Default.DecalInjectLocation = dialog.FileName;
}

private void btnPublicServerListDefault_Click(object sender, RoutedEventArgs e)
Expand Down
2 changes: 1 addition & 1 deletion Source/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.4")] // TODO: !!!!! ATTENTION ===== Update line 28 in MainWindow.xaml.cs ===== ATTENTION !!!!!
[assembly: AssemblyFileVersion("1.5")] // TODO: !!!!! ATTENTION ===== Update line 28 in MainWindow.xaml.cs ===== ATTENTION !!!!!

0 comments on commit a4d55f2

Please sign in to comment.