Skip to content
This repository has been archived by the owner on Oct 25, 2023. It is now read-only.

Commit

Permalink
Update button text
Browse files Browse the repository at this point in the history
  • Loading branch information
Dyvinia committed Oct 15, 2021
1 parent 4af198f commit d89ef47
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -288,15 +288,15 @@ public void refreshSettings() {

if ((bool)GlobalPlat.IsChecked) {
if (ifLaunchGame == true) {
LaunchButton_text.Text = "Apply Mods Globally & Launch Game";
LaunchButton_text.Text = "Enable Mods Globally & Launch Game";
}
else LaunchButton_text.Text = "Apply Mods Globally";
else LaunchButton_text.Text = "Enable Mods Globally";
}
else {
if (ifLaunchGame == true) {
LaunchButton_text.Text = "Launch Game with Mods enabled";
LaunchButton_text.Text = "Launch Game with Mods Enabled";
}
else LaunchButton_text.Text = "Launch with Mods enabled";
else LaunchButton_text.Text = "Launch with Mods Enabled";
}
}

Expand Down

0 comments on commit d89ef47

Please sign in to comment.