mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Fixed strange behavior with the cursor in customRTB after opening files
This commit is contained in:
parent
3be815d60f
commit
5bcaefc02b
1 changed files with 7 additions and 0 deletions
|
|
@ -132,6 +132,13 @@ private void openToolStripMenuItem_Click(object sender, EventArgs e)
|
|||
return;
|
||||
}
|
||||
DecryptAES();
|
||||
|
||||
/*workaround, strange behavior with the cursor in customRTB fix*/
|
||||
customRTB.DetectUrls = false;
|
||||
customRTB.DetectUrls = true;
|
||||
customRTB.Modified = false;
|
||||
/*workaround, strange behavior with the cursor in customRTB fix*/
|
||||
|
||||
if (publicVar.okPressed == true)
|
||||
{
|
||||
publicVar.okPressed = false;
|
||||
|
|
|
|||
Loading…
Reference in a new issue