Force downlaod/upload, download dialog

This commit is contained in:
Aurélie Delhaie
2022-05-24 23:46:44 +02:00
parent e89de6c0b7
commit 5f92fcafa0
31 changed files with 6066 additions and 153 deletions

View File

@@ -127,7 +127,7 @@ namespace OpenSaveCloudClient
{
NameBox.Text = LocationBox.Text.Split(Path.DirectorySeparatorChar).Last();
}
if (NameWarningLabel.Enabled)
if (NameWarningLabel.Visible)
{
if (MessageBox.Show(
"There is already a game with this name in the library. Would you like to add it anyway?",
@@ -135,7 +135,7 @@ namespace OpenSaveCloudClient
MessageBoxButtons.YesNo,
MessageBoxIcon.Question) == DialogResult.No) {
return;
}
}
}
result = new GameSave(NameBox.Text, "", LocationBox.Text, null, 0);
DialogResult = DialogResult.OK;