1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-21 16:05:25 +02:00

Bug 327056 - [disassembly] The view does not update to new context when it is hidden

This commit is contained in:
Anton Leherbauer 2010-10-14 09:19:08 +00:00
parent 3670c10d89
commit b99efd0422

View file

@ -1807,7 +1807,7 @@ public abstract class DisassemblyPart extends WorkbenchPart implements IDisassem
frame= 0;
}
if (frame != fTargetFrame) {
gotoFrameIfActive(frame);
gotoFrame(frame);
}
}
}
@ -2089,6 +2089,9 @@ public abstract class DisassemblyPart extends WorkbenchPart implements IDisassem
assert isGuiThread();
if (fActive) {
gotoFrame(frame);
} else {
// this will trigger an update in #setActive()
fTargetFrame = -1;
}
}