Fix scenario code

This commit is contained in:
tznind
2024-11-10 09:14:04 +00:00
parent d2f7af7702
commit 1bd5d8d043
2 changed files with 3 additions and 3 deletions

View File

@@ -322,7 +322,7 @@ public sealed class AnsiEscapeSequenceRequests : Scenario
private void UpdateResponses ()
{
_lblSummary.Text = GetSummary ();
_lblSummary.SetNeedsDisplay ();
_lblSummary.SetNeedsDraw();
}
private string GetSummary ()
@@ -371,7 +371,7 @@ public sealed class AnsiEscapeSequenceRequests : Scenario
.Select (g => new PointF (g.Key, g.Count ()))
.ToList ();
// _graphView.ScrollOffset = new PointF(,0);
_graphView.SetNeedsDisplay ();
_graphView.SetNeedsDraw();
}

View File

@@ -117,7 +117,7 @@ public class Images : Scenario
? CheckState.Checked
: CheckState.UnChecked;*/
cbSupportsSixel.CheckedStateChanging += (s, e) =>
_cbSupportsSixel.CheckedStateChanging += (s, e) =>
{
_sixelSupportResult.IsSupported = e.NewValue == CheckState.Checked;
SetupSixelSupported (e.NewValue == CheckState.Checked);