-
Notifications
You must be signed in to change notification settings - Fork 758
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Key commands like STOP (cmd + . ) don't work in Help window when it's detached #668
Comments
Did this commit go into 3.6.2? |
It did. |
Sorry, apparently doesn't work here: |
Confirmed. Reopening. |
Fixed. The issue was that Cmd+Period is treated specially by Mac OS, and never reaches QApplication as a QEvent. The only way it can be used to trigger a Qt shortcut is if it is a shortcut of an action in the currently active global menu for the application. However, we only had the menu with the related action active for the main window. The solution therefore was to use a common global menu bar for all windows (including detached docklets). |
Ctrl+. doesn't work in scide. |
This is probably related to #480 :
STOPing a sound or Task etc. by pressing CMD + . works within the Help window as long as this is attached (regardless if docked or undocked).
As soon as this is detached (and therefore undocked) the STOP-command apparently doesn't get passed through. I have to switch to the Editor window (where also the STOP command becomes available in the Language menu) to kill any action (like crazy sounds as Dan described it colourful).
edit:
It looks like as if this applies for other key commands as well, for instance for cmd + B for booting the server.
(found on Mac OS X 10.6.8)
The text was updated successfully, but these errors were encountered: