Skip to content

Commit

Permalink
Merge pull request #7062 from nextcloud/bugfix/blockChildFolderEncryp…
Browse files Browse the repository at this point in the history
…tContextMenu

only add Encrypt context menu entry for top folder in settings dialog
  • Loading branch information
mgallien authored Sep 3, 2024
2 parents 68c0a93 + 2c30093 commit 07e873c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui/accountsettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -584,8 +584,9 @@ void AccountSettings::slotSubfolderContextMenuRequested(const QModelIndex& index

const auto isEncrypted = info->isEncrypted();
const auto isParentEncrypted = _model->isAnyAncestorEncrypted(index);
const auto isTopFolder = index.parent().isValid() && !index.parent().parent().isValid();

if (!isEncrypted && !isParentEncrypted) {
if (!isEncrypted && !isParentEncrypted && isTopFolder) {
ac = menu.addAction(tr("Encrypt"));
connect(ac, &QAction::triggered, [this, info] { slotMarkSubfolderEncrypted(info); });
} else {
Expand Down

0 comments on commit 07e873c

Please sign in to comment.