From fdceeb368e75f3044d33ee0a634fda06e6123e93 Mon Sep 17 00:00:00 2001 From: Joe Brown Date: Sun, 28 May 2017 20:58:56 -0500 Subject: [PATCH] Do not hide notes by default. --- src/gui/entry/EditEntryWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/entry/EditEntryWidget.cpp b/src/gui/entry/EditEntryWidget.cpp index 000a1e55..1d584abb 100644 --- a/src/gui/entry/EditEntryWidget.cpp +++ b/src/gui/entry/EditEntryWidget.cpp @@ -309,7 +309,7 @@ void EditEntryWidget::setForms(const Entry* entry, bool restore) m_mainUi->passwordRepeatEdit->setReadOnly(m_history); m_mainUi->expireCheck->setEnabled(!m_history); m_mainUi->expireDatePicker->setReadOnly(m_history); - m_mainUi->notesEnabled->setChecked(false); + m_mainUi->notesEnabled->setChecked(true); m_mainUi->notesEdit->setReadOnly(m_history); m_mainUi->notesEdit->setVisible(false); m_mainUi->togglePasswordGeneratorButton->setChecked(false);