From 8c319fe0e4984f1392d41c27e1b7d765c18b3f0e Mon Sep 17 00:00:00 2001 From: RKrom Date: Tue, 22 May 2012 05:09:00 +0000 Subject: [PATCH] According to Bug #3527653 this change should make the code a bit more stable, the question is where the next problem occurs... git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1894 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4 --- Greenshot/Helpers/IEInterop/IEContainer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Greenshot/Helpers/IEInterop/IEContainer.cs b/Greenshot/Helpers/IEInterop/IEContainer.cs index 3d9308c83..b7910df96 100644 --- a/Greenshot/Helpers/IEInterop/IEContainer.cs +++ b/Greenshot/Helpers/IEInterop/IEContainer.cs @@ -209,8 +209,8 @@ namespace Greenshot.Helpers.IEInterop { } IHTMLFramesCollection2 frameCollection = (IHTMLFramesCollection2)document2.frames; for(int frame = 0; frame < frameCollection.length; frame++) { - IHTMLWindow2 frameWindow = frameCollection.item(frame); try { + IHTMLWindow2 frameWindow = frameCollection.item(frame); DocumentContainer frameData = new DocumentContainer(frameWindow, contentWindow, this); // check if frame is hidden if (!frameData.isHidden) {