mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
Fix scenario code
This commit is contained in:
@@ -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();
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user