Add some much needed parens

This commit is contained in:
Melanie
2013-04-16 12:50:22 +02:00
parent ab29c73ff5
commit ab2f06d64e

View File

@@ -86,8 +86,10 @@ BOOL LLFloaterPerms::postBuild()
if (!gHippoGridManager->getCurrentGrid()->isSecondLife())
childSetVisible("everyone_export", false);
if (!next_owner_perms & PERM_COPY)
if (!(next_owner_perms & PERM_COPY))
{
childSetEnabled("next_owner_transfer", false);
}
else if (export_support)
{
bool export_off = !gSavedPerAccountSettings.getBOOL("EveryoneExport");