Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
idadwind1 committed Apr 28, 2023
1 parent 5986b7c commit 5032a9f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
22 changes: 18 additions & 4 deletions Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ private void ValueChanged(object sender, EventArgs e)
{
ApplyChanges.Enabled = true;
Discard.Text = "Discard";
label13.Text = "Demo (Click confirm to update):";
}
switch (TabControl.SelectedIndex)
{
Expand Down Expand Up @@ -124,7 +125,7 @@ private void ControlEnter(object sender, EventArgs e)
label19.Text = "Discard all changes and exit";
break;
case "Reset":
label19.Text = "Reset all settings tpo default";
label19.Text = "Reset all settings to default";
break;
case "Start":
label19.Text = string.Format("Start a demo view of screen saver, command line: \"{0}\"", System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName + " /S");
Expand Down Expand Up @@ -158,6 +159,7 @@ private void ApplyChanges_Click(object sender, EventArgs e)
ini.Write("ProgressBarCount", "Settings", ProBarCnt.Value.ToString());
ini.Write("Background", "Settings", Background.Text);
ApplyChanges.Enabled = false;
label13.Text = "Demo:";
Discard.Text = "Cancel";
}

Expand Down

0 comments on commit 5032a9f

Please sign in to comment.