Skip to content

Commit 7ce7942

Browse files
committed
fixing a timing issue with ipad
1 parent 30db0d9 commit 7ce7942

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/resources/instruments-js/UIATarget.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ UIATarget.prototype.setDeviceOrientation_original = UIATarget.prototype.setDevic
2727

2828
UIATarget.prototype.setDeviceOrientation = function (orientation) {
2929
this.setDeviceOrientation_original(orientation);
30-
var timeNeededForTheRotationAnimationToComplete = 0.6; // seconds.
30+
var timeNeededForTheRotationAnimationToComplete = 0.8; // seconds.
3131
this.delay(timeNeededForTheRotationAnimationToComplete);
3232
var newOrientation = UIATarget.localTarget().frontMostApp().interfaceOrientation();
3333
if (newOrientation !== orientation) {

0 commit comments

Comments
 (0)