mirror of
https://github.com/greenshot/greenshot
synced 2025-08-19 13:10:00 -07:00
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
This commit is contained in:
parent
6459dd2bf3
commit
8c319fe0e4
1 changed files with 1 additions and 1 deletions
|
@ -209,8 +209,8 @@ namespace Greenshot.Helpers.IEInterop {
|
||||||
}
|
}
|
||||||
IHTMLFramesCollection2 frameCollection = (IHTMLFramesCollection2)document2.frames;
|
IHTMLFramesCollection2 frameCollection = (IHTMLFramesCollection2)document2.frames;
|
||||||
for(int frame = 0; frame < frameCollection.length; frame++) {
|
for(int frame = 0; frame < frameCollection.length; frame++) {
|
||||||
IHTMLWindow2 frameWindow = frameCollection.item(frame);
|
|
||||||
try {
|
try {
|
||||||
|
IHTMLWindow2 frameWindow = frameCollection.item(frame);
|
||||||
DocumentContainer frameData = new DocumentContainer(frameWindow, contentWindow, this);
|
DocumentContainer frameData = new DocumentContainer(frameWindow, contentWindow, this);
|
||||||
// check if frame is hidden
|
// check if frame is hidden
|
||||||
if (!frameData.isHidden) {
|
if (!frameData.isHidden) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue