mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
! binds stronger than ==
This should just avoid useless copying if more than 1 attribute is selected (and the option to copy attributes is unavailable). This also fixes a clang warning.
This commit is contained in:
parent
2e76385cae
commit
3a0648cf25
@ -227,7 +227,7 @@ void MainWindow::updateCopyAttributesMenu()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!dbWidget->numberOfSelectedEntries() == 1) {
|
if (dbWidget->numberOfSelectedEntries() != 1) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user