Hello

I am doing the following :

1) I am showing dialog in my app. The dialog by default get centered over the main wndow.

2) the user moves the dialogs to some other position.

3) After the user moves the dialog to the new position I am hiding
the dialog with hide function i.e setVisible(false)

4) After hiding the dialog, after some other code, I am showing the dialog again with show i.e setVisible ( true)

Problem :
After showing the dialog it doesnot shows itself at the new positionthat was moved to i.e it shows centered on my main window.
Is this normal behavior , or should I manually preserve the position some how?

Thanks