Xojo Web - Dialog window increments location XY 2017R2.1

Can someone please confirm if they have a similar issue when clicking the title of a webdialog of type: Palette.

#1
Every time you single left-click on the title bar it increments its position exactly (top+1) and (left+1)
It is similar to doing an algorithm as follows:

if left-click-on-title = true then
top = top + 1
left = left + 1
end if

#2
Additional to the problem if you use code to dynamically position a dialog it longer positions itself to the y-coordinates on the page.

if you set a dialog, wdTEST to Top = 15.
Then click the Title bar 5 times, TOP now = 20.
If you now try to set wdTEST.Top = 15 it stays on 20 and can no longer be changed dynamically until you reload the App.
wdTEST.Left is unaffected by this and can still be dynamically adjusted.

Any insight to the matter will be appreciated.

[quote=354152:@Rudolph Thomas]#1
Every time you single left-click on the title bar it increments its position exactly (top+1) and (left+1)
[/quote]
seems you are encountering <https://xojo.com/issue/28574> here

Thanks Tobias, I’ll have a look…