Skip to content

Commit c7685af

Browse files
authored
Merge branch 'keepassxreboot:develop' into devbleo2
2 parents 990e29d + 4f8c204 commit c7685af

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/format/KdbxWriter.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ void KdbxWriter::extractDatabase(QByteArray& xmlOutput, Database* db)
7171
QBuffer buffer;
7272
buffer.setBuffer(&xmlOutput);
7373
buffer.open(QIODevice::WriteOnly);
74-
KdbxXmlWriter writer(db->formatVersion());
74+
KdbxXmlWriter::BinaryIdxMap idxMap;
75+
KdbxXmlWriter writer(db->formatVersion(), idxMap);
7576
writer.disableInnerStreamProtection(true);
7677
writer.writeDatabase(&buffer, db);
7778
}

src/gui/entry/EditEntryWidget.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -913,6 +913,7 @@ void EditEntryWidget::setForms(Entry* entry, bool restore)
913913
m_mainUi->expireDatePicker->setReadOnly(m_history);
914914
m_mainUi->revealNotesButton->setIcon(icons()->onOffIcon("password-show", false));
915915
m_mainUi->revealNotesButton->setVisible(config()->get(Config::Security_HideNotes).toBool());
916+
m_mainUi->revealNotesButton->setChecked(false);
916917
m_mainUi->notesEdit->setReadOnly(m_history);
917918
m_mainUi->notesEdit->setVisible(!config()->get(Config::Security_HideNotes).toBool());
918919
if (config()->get(Config::GUI_MonospaceNotes).toBool()) {

0 commit comments

Comments
 (0)