Changed message to enable automatic updates at program startup

This commit is contained in:
Alexander 2019-11-20 15:48:49 +02:00
parent 0acea85613
commit c0fc18601c

View file

@ -845,7 +845,7 @@ private void MainForm_Shown(object sender, EventArgs e)
}
using (new CenterWinDialog(this))
{
DialogResult res = MessageBox.Show(this, "Enable automatic update check?", PublicVar.appName, MessageBoxButtons.YesNo, MessageBoxIcon.Information);
DialogResult res = MessageBox.Show(this, "Enable automatic update check at startup?\nThis action can be undone in settings.", PublicVar.appName, MessageBoxButtons.YesNo, MessageBoxIcon.Information);
if (res == DialogResult.Yes)
{
settings.autoCheckUpdate = true;