2013-07-05 17:50 UTC+0400 Phil Krylov (phil a t newstar.rinet.ru)

* src/debug/debugger.prg
    ! Set debugger activity flag before restoring settings.
This commit is contained in:
Phil Krylov
2013-07-05 17:50:54 +04:00
parent c688ef72af
commit e48674f094
2 changed files with 6 additions and 0 deletions

View File

@@ -10,6 +10,10 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-07-05 17:50 UTC+0400 Phil Krylov (phil a t newstar.rinet.ru)
* src/debug/debugger.prg
! Set debugger activity flag before restoring settings.
2013-07-05 17:05 UTC+0400 Phil Krylov (phil a t newstar.rinet.ru)
* src/debug/debugger.prg
! Fixed a typo in my last commit.

View File

@@ -397,7 +397,9 @@ METHOD New() CLASS HBDebugger
IF hb_FileExists( ::cSettingsFileName )
::Show()
::lActive := .T.
::LoadSettings()
::lActive := .F.
::lGo := ::lRunAtStartup // Once again after settings file is loaded
ENDIF