Fix: Sticky ItemEditor remake label

Add fix for Issue #541 (sticky label): disable fabric label when loading new item without fabric.
This commit is contained in:
Josh (vector_cmdr) 2026-02-13 00:13:01 +11:00 committed by GitHub
parent 2bfb5759bd
commit 17d64fe680
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -209,6 +209,7 @@ private void CB_ItemID_SelectedValueChanged(object sender, EventArgs e)
{
L_RemakeBody.Text = $"{bse.Trim()}:\n" + closeItems.ToStringList(false);
L_RemakeBody.Visible = true;
L_RemakeFabric.Visible = false;
}
else
{
@ -429,4 +430,4 @@ private void PB_Item_Click(object sender, EventArgs e)
Clipboard.SetText($"{u64:X16}");
System.Media.SystemSounds.Asterisk.Play();
}
}
}