mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
[CUETools] Fix gray out of setting under Tagging
So far, the CheckBox under Advanced Settings:
Tagging - "Overwrite CUE data" was only grayed out (enabled/disabled)
after clicking OK. The CheckBox should be enabled/disabled immediately
as soon as "Fill up missing CUE data from tags" is checked/unchecked.
- Add statement to frmSettings.Designer.cs, that wires the event to the
event handler for chkFillUpCUE_CheckedChanged()
- Remark: The event method calling EnableDisable() has already been
there before in frmSettings.cs:
private void chkFillUpCUE_CheckedChanged(object sender, EventArgs e)
{
EnableDisable();
}
This commit is contained in:
1
CUETools/frmSettings.Designer.cs
generated
1
CUETools/frmSettings.Designer.cs
generated
@@ -824,6 +824,7 @@ namespace JDP
|
|||||||
resources.ApplyResources(this.chkFillUpCUE, "chkFillUpCUE");
|
resources.ApplyResources(this.chkFillUpCUE, "chkFillUpCUE");
|
||||||
this.chkFillUpCUE.Name = "chkFillUpCUE";
|
this.chkFillUpCUE.Name = "chkFillUpCUE";
|
||||||
this.chkFillUpCUE.UseVisualStyleBackColor = true;
|
this.chkFillUpCUE.UseVisualStyleBackColor = true;
|
||||||
|
this.chkFillUpCUE.CheckedChanged += new System.EventHandler(this.chkFillUpCUE_CheckedChanged);
|
||||||
//
|
//
|
||||||
// tabPage2
|
// tabPage2
|
||||||
//
|
//
|
||||||
|
|||||||
Reference in New Issue
Block a user