Allow clicking on visual-modes label to enable them again

This commit is contained in:
Serge
2024-03-27 18:11:57 +01:00
parent af7823ffe9
commit 731a6c845f
3 changed files with 12 additions and 2 deletions

View File

@@ -256,10 +256,17 @@ namespace GHelper
VisualiseFnLock();
buttonFnLock.Click += ButtonFnLock_Click;
labelVisual.Click += LabelVisual_Click;
panelPerformance.Focus();
InitVisual();
}
private void LabelVisual_Click(object? sender, EventArgs e)
{
labelVisual.Visible = false;
VisualControl.forceVisual = true;
}
public void InitVisual()
{