1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-07 08:34:06 +02:00

Increase the delay before taking a screenshot

This commit is contained in:
chylex 2017-03-29 16:11:51 +02:00
parent 1cbcd5c2da
commit 4c54876ecf

View File

@ -15,7 +15,7 @@ public FormNotificationScreenshotable(Action callback, Form owner) : base(owner,
browser.FrameLoadEnd += (sender, args) => {
if (args.Frame.IsMain && browser.Address != "about:blank"){
ScriptLoader.ExecuteScript(args.Frame, "window.setTimeout($TD_NotificationScreenshot.trigger, 25)", "gen:screenshot");
ScriptLoader.ExecuteScript(args.Frame, "window.setTimeout($TD_NotificationScreenshot.trigger, 67)", "gen:screenshot");
}
};
}