Change label of TAStudio's pause button again

reverts a123776fe and 1f41f5ff2
This commit is contained in:
YoshiRulz 2024-06-08 12:35:32 +10:00
parent c825603d23
commit 028861f010
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 1 additions and 6 deletions

View File

@ -137,7 +137,7 @@
this.PauseButton.Name = "PauseButton"; this.PauseButton.Name = "PauseButton";
this.PauseButton.Size = new System.Drawing.Size(38, 23); this.PauseButton.Size = new System.Drawing.Size(38, 23);
this.PauseButton.TabIndex = 2; this.PauseButton.TabIndex = 2;
this.PauseButton.Text = ""; this.PauseButton.Text = "> ||";
this.toolTip1.SetToolTip(this.PauseButton, "Middle Mouse Button"); this.toolTip1.SetToolTip(this.PauseButton, "Middle Mouse Button");
this.PauseButton.UseVisualStyleBackColor = true; this.PauseButton.UseVisualStyleBackColor = true;
this.PauseButton.Click += new System.EventHandler(this.PauseButton_Click); this.PauseButton.Click += new System.EventHandler(this.PauseButton_Click);

View File

@ -71,11 +71,6 @@ namespace BizHawk.Client.EmuHawk
{ {
return; return;
} }
if (OSTailoredCode.IsUnixHost)
{
// glyph missing from default Mono WinForms font
PauseButton.Text = "> ||";
}
TurboSeekCheckbox.Checked = Tastudio.Config?.TurboSeek ?? false; TurboSeekCheckbox.Checked = Tastudio.Config?.TurboSeek ?? false;
AutoRestoreCheckbox.Checked = Tastudio.Settings.AutoRestoreLastPosition; AutoRestoreCheckbox.Checked = Tastudio.Settings.AutoRestoreLastPosition;