Added Window::showMessageBox.
ecode:
Closes SpartanJ/ecode#93 (ecode does not properly warn the user of the lack of GPU acceleration).
Minor refactor.
This commit is contained in:
Martín Lucas Golini
2023-04-02 19:37:31 -03:00
parent 47e744dccb
commit ab04f9b06e
9 changed files with 65 additions and 9 deletions

View File

@@ -233,7 +233,7 @@ void LSPDocumentClient::processTokens( const LSPSemanticTokensDelta& tokens ) {
mRunningSemanticTokens = false;
}
void LSPDocumentClient::onDocumentMoveHighlight( const Int64& fromLine, const Int64& numLines ) {
void LSPDocumentClient::onDocumentLineMove( const Int64& fromLine, const Int64& numLines ) {
Int64 linesCount = mDoc->linesCount();
if ( numLines > 0 ) {
for ( Int64 i = linesCount - 1; i >= fromLine; --i ) {