mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-20 03:58:10 -04:00
Hide history row when viewing history items.
This commit is contained in:
parent
61984a5748
commit
d0fd9af5e6
3 changed files with 9 additions and 2 deletions
|
@ -46,6 +46,11 @@ void EditWidget::add(const QString& labelText, QWidget* widget)
|
|||
m_ui->stackedWidget->addWidget(widget);
|
||||
}
|
||||
|
||||
void EditWidget::setRowHidden(int row, bool hide)
|
||||
{
|
||||
m_ui->categoryList->item(row)->setHidden(hide);
|
||||
}
|
||||
|
||||
void EditWidget::setCurrentRow(int index)
|
||||
{
|
||||
m_ui->categoryList->setCurrentRow(index);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue