Remove resolving placeholders for notes

This commit is contained in:
Jonathan White 2018-05-05 17:58:37 -04:00 committed by Jonathan White
parent 9ed2a74421
commit 13a313ff66
2 changed files with 2 additions and 2 deletions

View file

@ -198,7 +198,7 @@ void DetailsWidget::updateEntryNotesTab()
Q_ASSERT(m_currentEntry);
const QString notes = m_currentEntry->notes();
setTabEnabled(m_ui->entryTabWidget, m_ui->entryNotesTab, !notes.isEmpty());
m_ui->entryNotesEdit->setText(m_currentEntry->resolveMultiplePlaceholders(notes));
m_ui->entryNotesEdit->setText(notes);
}
void DetailsWidget::updateEntryAttributesTab()