1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

hoverwatch warp fix

This commit is contained in:
EinBurgbauer 2021-03-15 10:41:34 +01:00
parent bcb2d861d9
commit ce852367ed

View file

@ -1090,7 +1090,7 @@ namespace IDE.ui
if (autocomplete != null)
autocomplete.SetIgnoreMove(true);
mWidgetWindow.Resize((int32)(mOrigScreenX + minX), (int32)(mOrigScreenY + minY), (int32)(maxX - minX), (int32)(maxY - minY));
mWidgetWindow.Resize((int32)(mWidgetWindow.mNormX + minX), (int32)(mWidgetWindow.mNormY + minY), (int32)(maxX - minX), (int32)(maxY - minY));
if (autocomplete != null)
autocomplete.SetIgnoreMove(false);
}