mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Improve update of enabled state of group actions.
This commit is contained in:
parent
6fb6e1dc82
commit
adbce87ccd
1 changed files with 3 additions and 4 deletions
|
@ -601,10 +601,9 @@ void DatabaseWidget::clearLastGroup(Group* group)
|
|||
|
||||
void DatabaseWidget::updateGroupActions(Group* group)
|
||||
{
|
||||
bool inSearch = m_lastGroup;
|
||||
m_actionGroupNew->setEnabled(group && !inSearch);
|
||||
m_actionGroupEdit->setEnabled(group && !inSearch);
|
||||
m_actionGroupDelete->setEnabled(group && !inSearch && canDeleteCurrentGoup());
|
||||
m_actionGroupNew->setEnabled(group);
|
||||
m_actionGroupEdit->setEnabled(group);
|
||||
m_actionGroupDelete->setEnabled(group && canDeleteCurrentGoup());
|
||||
}
|
||||
|
||||
void DatabaseWidget::updateEntryActions()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue