mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Add attachments tab to details view
This commit is contained in:
parent
90a64dbde2
commit
0c200d360b
8 changed files with 82 additions and 9 deletions
|
@ -32,7 +32,6 @@
|
|||
#include <QMimeData>
|
||||
#include <QEvent>
|
||||
|
||||
|
||||
#include "core/Config.h"
|
||||
#include "core/Database.h"
|
||||
#include "core/Entry.h"
|
||||
|
@ -150,7 +149,7 @@ void EditEntryWidget::setupAdvanced()
|
|||
m_advancedUi->attachmentsView->horizontalHeader()->setStretchLastSection(true);
|
||||
m_advancedUi->attachmentsView->horizontalHeader()->resizeSection(0, 600);
|
||||
m_advancedUi->attachmentsView->setSelectionBehavior(QAbstractItemView::SelectRows);
|
||||
m_advancedUi->attachmentsView->setSelectionMode(QAbstractItemView::MultiSelection);
|
||||
m_advancedUi->attachmentsView->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
||||
|
||||
connect(m_advancedUi->attachmentsView->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)),
|
||||
SLOT(updateAttachmentButtonsEnabled()));
|
||||
|
@ -1044,7 +1043,7 @@ void EditEntryWidget::revealCurrentAttribute()
|
|||
}
|
||||
}
|
||||
|
||||
void EditEntryWidget::insertAttachments(const QStringList &filenames, QString *errorMessage)
|
||||
void EditEntryWidget::insertAttachments(const QStringList& filenames, QString* errorMessage)
|
||||
{
|
||||
QStringList errors;
|
||||
for (const QString &filename: filenames) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue