diff --git a/comp/src/gb.form/.src/GridView/_GridView_Column.class b/comp/src/gb.form/.src/GridView/_GridView_Column.class index 34694cf8e..26b289b71 100644 --- a/comp/src/gb.form/.src/GridView/_GridView_Column.class +++ b/comp/src/gb.form/.src/GridView/_GridView_Column.class @@ -47,8 +47,8 @@ End Private Sub Width_Write(Value As Integer) If Value < 0 Then Value = GetView()._GetPreferredWidth(_Column) - If Value < 1 Or If Value > 1024 Or If Value = $W Then Return - $W = Value + If Value < 0 Or If Value > 1024 Or If Value = $W Then Return + $W = Max(1, Value) Raise _Refresh End