MATLAB: Waitbar jumps to center screen on update

MATLABwaitbar

Is there a way to prevent the waitbar from jumping back to the middle of the screen upon update?
I'd like to have another waitbar on my screen. i'd just move one waitbar to the side in the beginning of my calculations.

Best Answer

Updating the waitbar does not change the position of the window. So if you observe a changed position, your code must contain the explicit instruction to do so. Perhaps you create a new waitbar in each iteration instead of updating the value only. If you post some code, which reproduces the observed behavior, we can find the problem.