Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Plasma
KWin
Commits
ae883aaa
Commit
ae883aaa
authored
Oct 28, 2020
by
Vlad Zahorodnii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
workspace.cpp
workspace.cpp
+7
-0
No files found.
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
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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