{
Shell shell = display.getActiveShell();
if (shell == null){ // happens on windows
shell = display.getShells()[0];
}
Point point = shell.toDisplay(1, 1);
bounds[0] = point.x;
bounds[1] = point.y;
}
});
DisplayUtils.doClick(display, bounds[0] + 5, bounds[1] + 5, false);