فهرست منبع

Avoid some potential boxing

Brandon Thetford 1 سال پیش
والد
کامیت
76b247a9b3
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      Terminal.Gui/Text/Autocomplete/PopupAutocomplete.cs

+ 2 - 2
Terminal.Gui/Text/Autocomplete/PopupAutocomplete.cs

@@ -1,4 +1,4 @@
-namespace Terminal.Gui;
+namespace Terminal.Gui;
 
 /// <summary>
 ///     Renders an overlay on another view at a given point that allows selecting from a range of 'autocomplete'
@@ -568,7 +568,7 @@ public abstract class PopupAutocomplete : AutocompleteBase
 
         public override void OnDrawContent (Rect contentArea)
         {
-            if (autocomplete.LastPopupPos is null)
+            if (!autocomplete.LastPopupPos.HasValue)
             {
                 return;
             }