Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
Plasma Desktop
Commits
e3bcfc3d
Commit
e3bcfc3d
authored
Nov 18, 2020
by
Andrey Butirsky
Browse files
fix: Accessibility KCM crashes on Wayland
It's a workaround: no X specific mouseKeysShortcut() call on Wayland
BUG: 429022
parent
f0153ab8
Changes
1
Hide whitespace changes
Inline
Side-by-side
kcms/access/kcmaccess.cpp
View file @
e3bcfc3d
...
...
@@ -156,7 +156,7 @@ KAccessConfig::KAccessConfig(QObject *parent, const QVariantList& args)
,
m_bellSettings
(
new
BellSettings
(
this
))
,
m_keyboardSettings
(
new
KeyboardSettings
(
this
))
,
m_screenReaderSettings
(
new
ScreenReaderSettings
(
this
))
,
m_desktopShortcutInfo
(
mouseKeysShortcut
(
QX11Info
::
display
()))
,
m_desktopShortcutInfo
(
QX11Info
::
isPlatformX11
()
?
mouseKeysShortcut
(
QX11Info
::
display
())
:
QString
()
)
{
qmlRegisterType
<
MouseSettings
>
();
qmlRegisterType
<
BellSettings
>
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment