Summary: | enabling of the normal permission dialog takes effect only after closing after doing changes on acl | ||
---|---|---|---|
Product: | [Unmaintained] kio | Reporter: | urwald <urwald> |
Component: | kfile | Assignee: | Till Adam <adam> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | openSUSE | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
urwald
2006-01-10 08:55:42 UTC
SVN commit 498933 by tilladam: Make sure the base permission widgets are properly enabled or disabled when the ACLs change for files only. BUG: 119841 M +2 -2 kpropertiesdialog.cpp --- branches/KDE/3.5/kdelibs/kio/kfile/kpropertiesdialog.cpp #498932:498933 @@ -2125,8 +2125,8 @@ } #endif + updateAccessControls(); emit changed(); - updateAccessControls(); } // QString KFilePermissionsPropsPlugin::tabName () const @@ -2266,7 +2266,7 @@ enableAccessControls(false); break; case PermissionsOnlyFiles: - enableAccessControls(d->canChangePermissions && !d->isIrregular); + enableAccessControls(d->canChangePermissions && !d->isIrregular && !d->hasExtendedACL); if (d->canChangePermissions) d->explanationLabel->setText(d->isIrregular || d->hasExtendedACL ? i18n("This file uses advanced permissions", *** Bug 119375 has been marked as a duplicate of this bug. *** |