https://bugs.kde.org/show_bug.cgi?id=382338
Bug ID: 382338 Summary: Mac: sortedDocumentList menu doesn't change focus Product: kdevplatform Version: git master Platform: Compiled Sources OS: OS X Status: UNCONFIRMED Severity: normal Priority: NOR Component: sublime Assignee: kdevelop-bugs-n...@kde.org Reporter: rjvber...@gmail.com Target Milestone: --- I'm seeing an issue where selecting a document in the dropdown sorted list of open documents changes the document view but doesn't set the focus and window title accordingly. One needs to click in the editor view to finalise the operation. Probably not a big deal if you want to edit the document but a lot more annoying when you are cleaning house and just want to close the document using the keyboard shortcut. This happens with both the Cocoa and the XCB QPAs, even when displaying remotely on a Linux system (by contrast, it does not happen when running Kdevelop from a remote Linux system connected to XQuartz). I think that means that there is something platform-specific in the basic event handling on Mac. I first suspected my recent Dock menu addition, but reverting that didn't help. What does help is removing the QSignalBlocker in Container::setCurrentWidget(). I haven't noticed any other effect of that modification; is it still required elsewhere (IOW, can we just remove it unconditionally)? diff --git a/sublime/container.cpp b/sublime/container.cpp index 43e280ff2d1a75efa60f72a419628ab3e2805fe4..972f36953f3112a70ac3643b24bc89a85090baa3 100644 --- a/sublime/container.cpp +++ b/sublime/container.cpp @@ -495,7 +500,9 @@ void Container::setCurrentWidget(QWidget* w) //this function is called from MainWindow::activateView() //which does the activation without any additional signals { +#ifndef Q_OS_MACOS QSignalBlocker blocker(d->tabBar); +#endif d->tabBar->setCurrentIndex(d->stack->indexOf(w)); } if (View* view = viewForWidget(w)) -- You are receiving this mail because: You are watching all bug changes.