From 5412d089cd85daa0d18858ffca49aa2e9da91bce Mon Sep 17 00:00:00 2001 From: Alexander Date: Wed, 6 Nov 2019 11:05:18 +0200 Subject: [PATCH] Disabled "modified" tooltip when file is locked --- Crypto Notepad/MainForm.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Crypto Notepad/MainForm.cs b/Crypto Notepad/MainForm.cs index e9e8b7d..a4c7197 100644 --- a/Crypto Notepad/MainForm.cs +++ b/Crypto Notepad/MainForm.cs @@ -1790,6 +1790,7 @@ private void FileLockedPanel_VisibleChanged(object sender, EventArgs e) richTextBox.Clear(); StatusPanelTextInfo(); statusPanelModifiedLabel.Text = "Modified"; + statusPanelModifiedLabel.ToolTipText = null; statusPanelSizeLabel.Text = "Size"; fileLockedKeyTextBox.Focus(); }