Skip to content

Commit

Permalink
Added missing culture info parameter to the ToLower() method call in …
Browse files Browse the repository at this point in the history
…the FP_Uninstall_Click() private method of the FrmMainW class.
  • Loading branch information
xvitaly committed Nov 13, 2024
1 parent dd7f16d commit fae74e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/srcrepair/FrmMainW.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2350,7 +2350,7 @@ private void FP_Uninstall_Click(object sender, EventArgs e)
else
{
// Showing interactive dialog with detected FPS-configs...
GuiHelpers.FormShowCleanup(App.SourceGames[AppSelector.Text].FPSConfigs, ((Button)sender).Text.ToLower(), AppStrings.FP_RemoveSuccessful, App.SourceGames[AppSelector.Text].FullBackUpDirPath, App.SourceGames[AppSelector.Text].GameBinaryFile, false, false, false, Properties.Settings.Default.SafeCleanup);
GuiHelpers.FormShowCleanup(App.SourceGames[AppSelector.Text].FPSConfigs, ((Button)sender).Text.ToLower(CultureInfo.CurrentUICulture), AppStrings.FP_RemoveSuccessful, App.SourceGames[AppSelector.Text].FullBackUpDirPath, App.SourceGames[AppSelector.Text].GameBinaryFile, false, false, false, Properties.Settings.Default.SafeCleanup);
}

// Changing the state of some controls...
Expand Down

0 comments on commit fae74e5

Please sign in to comment.