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
Discover
Commits
19b0408d
Commit
19b0408d
authored
Apr 25, 2022
by
Laurent Montel
Browse files
Qt::AA_UseHighDpiPixmaps is default in qt6
parent
ca8b3871
Pipeline
#168181
passed with stage
in 55 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
discover/main.cpp
View file @
19b0408d
...
...
@@ -105,7 +105,9 @@ int main(int argc, char **argv)
QApplication
app
(
argc
,
argv
);
app
.
setWindowIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"plasmadiscover"
)));
app
.
setAttribute
(
Qt
::
AA_DontCreateNativeWidgetSiblings
);
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
app
.
setAttribute
(
Qt
::
AA_UseHighDpiPixmaps
,
true
);
#endif
KCrash
::
initialize
();
KLocalizedString
::
setApplicationDomain
(
"plasma-discover"
);
KAboutData
about
(
QStringLiteral
(
"discover"
),
...
...
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