Преглед изворни кода

Added SetNeedsDisplay to AllowsMultipleSelection per bdisp

Tig Kindel пре 2 година
родитељ
комит
77ae856731
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      Terminal.Gui/Views/ListView.cs

+ 2 - 1
Terminal.Gui/Views/ListView.cs

@@ -191,7 +191,7 @@ namespace Terminal.Gui {
 		}
 
 		/// <summary>
-		/// If set to <see langword="true"/>  more than one item can be selected. If <see langword="false"/> selecting
+		/// If set to <see langword="true"/> more than one item can be selected. If <see langword="false"/> selecting
 		/// an item will cause all others to be un-selected. The default is <see langword="false"/>.
 		/// </summary>
 		public bool AllowsMultipleSelection {
@@ -206,6 +206,7 @@ namespace Terminal.Gui {
 						}
 					}
 				}
+				SetNeedsDisplay ();
 			}
 		}