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
KWin
Commits
ae883aaa
Commit
ae883aaa
authored
Oct 28, 2020
by
Vlad Zahorodnii
Browse files
Include cursor theme name and size in support info
It might be useful while triaging cursor related issues.
parent
f397f072
Changes
1
Hide whitespace changes
Inline
Side-by-side
workspace.cpp
View file @
ae883aaa
...
...
@@ -1480,6 +1480,13 @@ QString Workspace::supportInformation() const
support
.
append
(
kwinApp
()
->
platform
()
->
supportInformation
());
support
.
append
(
QStringLiteral
(
"
\n
"
));
const
Cursor
*
cursor
=
Cursors
::
self
()
->
mouse
();
support
.
append
(
QLatin1String
(
"Cursor
\n
"
));
support
.
append
(
QLatin1String
(
"======
\n
"
));
support
.
append
(
QLatin1String
(
"themeName: "
)
+
cursor
->
themeName
()
+
QLatin1Char
(
'\n'
));
support
.
append
(
QLatin1String
(
"themeSize: "
)
+
QString
::
number
(
cursor
->
themeSize
())
+
QLatin1Char
(
'\n'
));
support
.
append
(
QLatin1Char
(
'\n'
));
support
.
append
(
QStringLiteral
(
"Options
\n
"
));
support
.
append
(
QStringLiteral
(
"=======
\n
"
));
const
QMetaObject
*
metaOptions
=
options
->
metaObject
();
...
...
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