Make Scintilla paste a separate undo operation.
Fixes https://gitlab.com/kicad/code/kicad/issues/11756
(cherry picked from commit c3a5947fe6
)
This commit is contained in:
parent
894f424d14
commit
4987809fe3
|
@ -228,7 +228,9 @@ void SCINTILLA_TRICKS::onCharHook( wxKeyEvent& aEvent )
|
|||
str = data.GetText();
|
||||
|
||||
ConvertSmartQuotesAndDashes( &str );
|
||||
m_te->BeginUndoAction();
|
||||
m_te->AddText( str );
|
||||
m_te->EndUndoAction();
|
||||
}
|
||||
|
||||
wxTheClipboard->Close();
|
||||
|
|
Loading…
Reference in New Issue