aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/LSession.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-05-01 10:28:29 -0400
committerKen Moore <ken@ixsystems.com>2017-05-01 10:28:29 -0400
commit77ada9cd9de7a6a6826ddd8d6ec451882f424e1e (patch)
tree04f09ff9971cf67249f0407e5981c848a94d67f7 /src-qt5/core/lumina-desktop-unified/LSession.cpp
parentQuick sync of all the translation files with the sources. (diff)
downloadlumina-77ada9cd9de7a6a6826ddd8d6ec451882f424e1e.tar.gz
lumina-77ada9cd9de7a6a6826ddd8d6ec451882f424e1e.tar.bz2
lumina-77ada9cd9de7a6a6826ddd8d6ec451882f424e1e.zip
Ensure that all Lumina tools/utilities are setup with high-DPI icons.
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/LSession.cpp')
-rw-r--r--src-qt5/core/lumina-desktop-unified/LSession.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/LSession.cpp b/src-qt5/core/lumina-desktop-unified/LSession.cpp
index 1c8d3c45..e511d7ad 100644
--- a/src-qt5/core/lumina-desktop-unified/LSession.cpp
+++ b/src-qt5/core/lumina-desktop-unified/LSession.cpp
@@ -39,7 +39,7 @@ LSession::LSession(int &argc, char ** argv) : LSingleApplication(argc, argv, "lu
this->setEffectEnabled( Qt::UI_AnimateCombo, true);
this->setEffectEnabled( Qt::UI_AnimateTooltip, true);
//this->setAttribute(Qt::AA_UseDesktopOpenGL);
- //this->setAttribute(Qt::AA_UseHighDpiPixmaps); //allow pixmaps to be scaled up as well as down
+ this->setAttribute(Qt::AA_UseHighDpiPixmaps); //allow pixmaps to be scaled up as well as down
//Now initialize the global objects (but do not start them yet)
Lumina::EFILTER = new EventFilter(); //Need the XCB Event filter first
bgstack15