Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
PIM
Akonadi Data Import Wizard
Commits
8936bf6a
Commit
8936bf6a
authored
Sep 17, 2016
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Qt::AA_EnableHighDpiScaling support
parent
ccd966f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/main.cpp
src/main.cpp
+1
-1
No files found.
src/main.cpp
View file @
8936bf6a
...
...
@@ -33,9 +33,9 @@
int
main
(
int
argc
,
char
*
argv
[])
{
QCoreApplication
::
setAttribute
(
Qt
::
AA_EnableHighDpiScaling
);
QApplication
app
(
argc
,
argv
);
app
.
setAttribute
(
Qt
::
AA_UseHighDpiPixmaps
,
true
);
app
.
setAttribute
(
Qt
::
AA_EnableHighDpiScaling
);
KCrash
::
initialize
();
Kdelibs4ConfigMigrator
migrate
(
QStringLiteral
(
"importwizard"
));
migrate
.
setConfigFiles
(
QStringList
()
<<
QStringLiteral
(
"importwizardrc"
));
...
...
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