mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
Fixes for checkboxes in tree views and table views. Fixes for breakpoints enable/disable.
This commit is contained in:
@@ -1458,6 +1458,9 @@ bool DebuggerPlugin::setBreakpoint( UICodeEditor* editor, Uint32 lineNumber ) {
|
||||
|
||||
bool DebuggerPlugin::breakpointSetEnabled( const std::string& doc, Uint32 lineNumber,
|
||||
bool enabled ) {
|
||||
if ( mChangingBreakpoint )
|
||||
return false;
|
||||
BoolScopedOp changing( mChangingBreakpoint, true );
|
||||
Lock l( mBreakpointsMutex );
|
||||
auto& breakpoints = mBreakpoints[doc];
|
||||
SourceBreakpointStateful sb( lineNumber );
|
||||
|
||||
Reference in New Issue
Block a user