aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-screenshot
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-11-10 10:11:28 -0500
committerKen Moore <ken@ixsystems.com>2016-11-10 10:11:28 -0500
commit135fd7e158e8c4c030beb8f9c64bc24303a07da7 (patch)
treef3eee04b584a7a18efcb6484c63b1145a3fa6a33 /src-qt5/desktop-utils/lumina-screenshot
parentDue to some erratic reports of the wallpaper widget not staying on the bottom... (diff)
downloadlumina-135fd7e158e8c4c030beb8f9c64bc24303a07da7.tar.gz
lumina-135fd7e158e8c4c030beb8f9c64bc24303a07da7.tar.bz2
lumina-135fd7e158e8c4c030beb8f9c64bc24303a07da7.zip
Disable the theme engine from the desktop-utilities.
Also start pruning unneeded libLumina classes from the desktop utils.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-screenshot')
-rw-r--r--src-qt5/desktop-utils/lumina-screenshot/main.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src-qt5/desktop-utils/lumina-screenshot/main.cpp b/src-qt5/desktop-utils/lumina-screenshot/main.cpp
index a39d6851..7ba9d2d5 100644
--- a/src-qt5/desktop-utils/lumina-screenshot/main.cpp
+++ b/src-qt5/desktop-utils/lumina-screenshot/main.cpp
@@ -13,12 +13,11 @@ int main(int argc, char ** argv)
{
LTHEME::LoadCustomEnvSettings();
LSingleApplication a(argc, argv, "l-screenshot");
- LuminaThemeEngine theme(&a);
+ //LuminaThemeEngine theme(&a);
a.setApplicationName("Take Screenshot");
- //LUtils::LoadTranslation(&a, "l-screenshot");
MainUI w;
- QObject::connect(&theme,SIGNAL(updateIcons()), &w, SLOT(setupIcons()) );
+ //QObject::connect(&theme,SIGNAL(updateIcons()), &w, SLOT(setupIcons()) );
w.show();
return a.exec();
bgstack15