mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
Added String::stripAnsiCodes. Now used in build and run settings, this can be configured for the build and the run options.
Minor fixes in C and C++ grammars. Debugger: Expressions are now evaluated as soon as they are added if debugger is running but paused. Fix a newly introduced bug that incorrectly calculated string widths when string contained new lines.
This commit is contained in:
@@ -923,6 +923,10 @@ void DebuggerPlugin::openExpressionMenu( ModelIndex idx ) {
|
||||
mExpressionsHolder->addChild(
|
||||
std::make_shared<ModelVariableNode>( expression, 0 ) );
|
||||
msgBox->closeWindow();
|
||||
|
||||
if ( mDebuggingState == StatusDebuggerController::State::Paused && mListener ) {
|
||||
mListener->evaluateExpression( expression );
|
||||
}
|
||||
}
|
||||
} );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user