You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
989 B
35 lines
989 B
12 years ago
|
commit 7da06e558a75c035ea881347e9da69ef9ee57927
|
||
|
Author: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||
|
Date: 1343199702 -0500
|
||
13 years ago
|
|
||
12 years ago
|
Fix kmix autostart
|
||
|
This resolves Bug 503, and re-applies commit 2cc2e3a2 as part of the fix
|
||
13 years ago
|
|
||
12 years ago
|
|
||
|
diff --git a/kmix/KMixApp.cpp b/kmix/KMixApp.cpp
|
||
|
index d1df895..10e7b6a 100644
|
||
|
--- a/kmix/KMixApp.cpp
|
||
|
+++ b/kmix/KMixApp.cpp
|
||
|
@@ -28,6 +28,8 @@
|
||
|
KMixApp::KMixApp()
|
||
|
: KUniqueApplication(), m_kmix( 0 )
|
||
|
{
|
||
|
+ // We handle autostart via standard autostart-enabled .desktop file instead of the session manager
|
||
|
+ disableSessionManagement();
|
||
|
}
|
||
|
|
||
|
|
||
13 years ago
|
diff --git a/kmix/Makefile.am b/kmix/Makefile.am
|
||
|
index 5051363..d2da702 100644
|
||
|
--- a/kmix/Makefile.am
|
||
|
+++ b/kmix/Makefile.am
|
||
|
@@ -49,7 +49,7 @@ xdg_apps_DATA = kmix.desktop
|
||
|
rcdir = $(kde_datadir)/kmix
|
||
|
rc_DATA = kmixui.rc
|
||
|
|
||
|
-autostart_DATA = restore_kmix_volumes.desktop
|
||
|
+autostart_DATA = kmix.desktop restore_kmix_volumes.desktop
|
||
|
autostartdir = $(datadir)/autostart
|
||
|
|
||
|
lnkdir = $(kde_datadir)/kicker/applets
|