Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
PIM Data Exporter
Commits
f461e99f
Commit
f461e99f
authored
Sep 28, 2019
by
Laurent Montel
😁
Browse files
Fix hidpi support
parent
eee77d15
Changes
1
Show whitespace changes
Inline
Side-by-side
gui/main.cpp
View file @
f461e99f
...
...
@@ -29,12 +29,12 @@
int
main
(
int
argc
,
char
*
argv
[])
{
QCoreApplication
::
setAttribute
(
Qt
::
AA_EnableHighDpiScaling
,
true
);
QCoreApplication
::
setAttribute
(
Qt
::
AA_UseHighDpiPixmaps
,
true
);
QApplication
app
(
argc
,
argv
);
KLocalizedString
::
setApplicationDomain
(
"pimdataexporter"
);
KCrash
::
initialize
();
app
.
setAttribute
(
Qt
::
AA_UseHighDpiPixmaps
,
true
);
app
.
setDesktopFileName
(
QStringLiteral
(
"org.kde.pimdataexporter"
));
Kdelibs4ConfigMigrator
migrate
(
QStringLiteral
(
"pimdataexporter"
));
//old migration. Don't change it
...
...
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