https://bugs.kde.org/show_bug.cgi?id=385111
Robert Jennings <rjennings....@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rjennings....@gmail.com --- Comment #5 from Robert Jennings <rjennings....@gmail.com> --- Hi, Been playing around with this. I might know what's going on but wanted you guys to check my thinking and, if I'm right, maybe come up with a better solution? In dolphintabpage.cpp: Through the connections set up in createViewContainer(), m_primaryViewContainer->setActive(true), at line 98, ends up triggering slotViewActivated(). Because m_primaryViewActive is true, oldActiveView is not set to the view needed in this particular situation. Both oldActiveView and newActiveView end up pointing to the same view and the connections are not set up. Adding m_primaryViewActive = false; inside the if clause at line 93 seems to fix it? -- You are receiving this mail because: You are watching all bug changes.