You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried the following part of your code in a personal Wingrid tool. When _NET_FRAME_EXTENTS is 0, 0, 0, 0 and _GTK_FRAME_EXTENTS is 2, 2, 22, 10 (or similar values), the tool subtracts 2, 2, 22, 10 from 0, 0, 0, 0. However, since ext is a uint array, this results in underflow, producing values like [18446744073709551600, 18446744073709551600, 18446744073709551606, 18446744073709551584].
I tried the following part of your code in a personal Wingrid tool. When
_NET_FRAME_EXTENTS
is0, 0, 0, 0
and_GTK_FRAME_EXTENTS
is2, 2, 22, 10
(or similar values), the tool subtracts2, 2, 22, 10
from0, 0, 0, 0
. However, sinceext
is auint
array, this results in underflow, producing values like[18446744073709551600, 18446744073709551600, 18446744073709551606, 18446744073709551584]
.The text was updated successfully, but these errors were encountered: