Summary: | "Launch wallet manager" in kwalletmanager prefs does not make sense | ||
---|---|---|---|
Product: | [Applications] kwalletmanager | Reporter: | Sashmit Bhaduri <smt> |
Component: | general | Assignee: | George Staikos <staikos> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | ||
Priority: | VLO | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Sashmit Bhaduri
2004-01-04 20:04:31 UTC
That's not an embedded config panel, it's actually kcmshell and adding or removing that button requires quite a bit of code. It's not really worth it. Actually it's supposed to raise the wallet manager if it's already loaded, which is a feature. I'll consider it if you still think it should be removed, but it is very very low priority. Subject: kdeutils/kwallet/konfigurator CVS commit by staikos: I think this is against my better judgement, but if users are confused by it then maybe it's for the best. Hide the Launch Manager button if it's already launched. Sure it could be closed while the kcm is open, but that's a risk I'm willing to take. :-) CCMAIL: 71851-done@bugs.kde.org M +5 -0 konfigurator.cpp 1.17 --- kdeutils/kwallet/konfigurator/konfigurator.cpp #1.16:1.17 @@ -66,4 +66,9 @@ KWalletConfig::KWalletConfig(QWidget *pa updateWalletLists(); load(); + + if (DCOPClient::mainClient()->isApplicationRegistered("kwalletmanager")) { + _wcw->_launch->hide(); + } + } |