From 72748bb5c007c85f0967179fe7c31c33e52455a9 Mon Sep 17 00:00:00 2001 From: Le Tan Date: Fri, 31 May 2019 19:47:44 +0800 Subject: [PATCH] add hints about auto-save --- src/dialog/vsettingsdialog.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/dialog/vsettingsdialog.cpp b/src/dialog/vsettingsdialog.cpp index 008f000e..8f80e5a0 100644 --- a/src/dialog/vsettingsdialog.cpp +++ b/src/dialog/vsettingsdialog.cpp @@ -707,14 +707,15 @@ VReadEditTab::VReadEditTab(VSettingsDialog *p_dlg, QWidget *p_parent) m_flashAnchor->setToolTip(tr("Flash current heading on change")); // Swap file. - m_swapFile = new QCheckBox(tr("Swap file")); + m_swapFile = new QCheckBox(tr("Swap file (Recommended)")); m_swapFile->setToolTip(tr("Automatically save changes to a swap file for backup")); connect(m_swapFile, &QCheckBox::stateChanged, this, &VReadEditTab::showTipsAboutAutoSave); // Auto save. - m_autoSave = new QCheckBox(tr("Auto save")); - m_autoSave->setToolTip(tr("Automatically save the note when editing")); + m_autoSave = new QCheckBox(tr("Auto save (Buggy)")); + m_autoSave->setToolTip(tr("Automatically save the note when editing" + " (may DELETE images on save)")); connect(m_autoSave, &QCheckBox::stateChanged, this, &VReadEditTab::showTipsAboutAutoSave);