Skip to content

Commit

Permalink
Merge pull request #24 from ngreyling/button_text
Browse files Browse the repository at this point in the history
Fix capitalization of text on StartStop button
  • Loading branch information
handruin authored Mar 16, 2017
2 parents 10a4ad3 + 8afa1ed commit 163e018
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SPDIFKA/SPDIFGUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -237,14 +237,14 @@ private void manageStartStop()
toolStripStart.Text = toolStripStopText;
runningLabel.Text = startMessage;
this.spdifka.BalloonTipText = name + " - " + startMessage;
startStopButton.Text = "stop";
startStopButton.Text = "Stop";
AudioControl.Instance.start();
this.updateTrayIconWhenRunning(true);
}
else
{
this.spdifka.Text = name + " - " + stoppedMessage;
startStopButton.Text = "start";
startStopButton.Text = "Start";
toolStripStart.Text = toolStripStartText;
runningLabel.Text = stoppedMessage;
this.spdifka.BalloonTipText = name + " - " + stoppedMessage;
Expand Down

0 comments on commit 163e018

Please sign in to comment.