-
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[autotests/integration] Add test case for global shortcuts with Fx
New test which tries to trigger Alt+F3 which does not work due to the behavior how xkbcommon calculates consumed modifers. The combination Ctrl+Alt+F3 generates a keysym (vt switching) so just pressing F3 already consumes ctrl and alt modifier. For more information see: * xkbcommon/libxkbcommon#17 * https://bugs.freedesktop.org/show_bug.cgi?id=92818 CCBUG: 368989
- Loading branch information
1 parent
03b8477
commit 974abbf
Showing
2 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |
#define KWIN_USERACTIONS_H | ||
#include "ui_shortcutdialog.h" | ||
|
||
#include <kwinglobals.h> | ||
|
||
// Qt | ||
#include <QDialog> | ||
#include <QObject> | ||
|
@@ -52,7 +54,7 @@ class Client; | |
* | ||
* @author Martin Gräßlin <[email protected]> | ||
**/ | ||
class UserActionsMenu : public QObject | ||
class KWIN_EXPORT UserActionsMenu : public QObject | ||
{ | ||
Q_OBJECT | ||
public: | ||
|