Переглянути джерело

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>
 /// <summary>
 ///     Renders an overlay on another view at a given point that allows selecting from a range of 'autocomplete'
 ///     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)
         public override void OnDrawContent (Rect contentArea)
         {
         {
-            if (autocomplete.LastPopupPos is null)
+            if (!autocomplete.LastPopupPos.HasValue)
             {
             {
                 return;
                 return;
             }
             }