From 77ae85673155727a7519dea3c81ff9c70a849669 Mon Sep 17 00:00:00 2001 From: Tig Kindel Date: Tue, 25 Oct 2022 11:34:08 -0600 Subject: [PATCH] Added SetNeedsDisplay to AllowsMultipleSelection per bdisp --- Terminal.Gui/Views/ListView.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Terminal.Gui/Views/ListView.cs b/Terminal.Gui/Views/ListView.cs index 930b6a517..19e8605fb 100644 --- a/Terminal.Gui/Views/ListView.cs +++ b/Terminal.Gui/Views/ListView.cs @@ -191,7 +191,7 @@ namespace Terminal.Gui { } /// - /// If set to more than one item can be selected. If selecting + /// If set to more than one item can be selected. If selecting /// an item will cause all others to be un-selected. The default is . /// public bool AllowsMultipleSelection { @@ -206,6 +206,7 @@ namespace Terminal.Gui { } } } + SetNeedsDisplay (); } }