Skip to content

Commit

Permalink
reset bool
Browse files Browse the repository at this point in the history
  • Loading branch information
ddkwork committed Jan 28, 2024
1 parent f480b06 commit 349f76d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/code/debugview.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ type DebugView struct {
}

// DbgIsActive means debugger is started.
func (dv *DebugView) DbgIsActive() bool { return dv.Dbg != nil && dv.Dbg.IsActive() }
func (dv *DebugView) DbgIsActive() bool {
return dv.Dbg != nil && dv.Dbg.IsActive()
}

// DbgIsAvail means the debugger is started AND process is not currently running --
// it is available for command input.
Expand Down

0 comments on commit 349f76d

Please sign in to comment.