call to debugger SelColors() option

This commit is contained in:
Antonio Linares
2001-02-06 16:47:02 +00:00
parent 5bc00580ce
commit 44191cd8b9
2 changed files with 5 additions and 5 deletions

View File

@@ -119,7 +119,7 @@ function __dbgBuildMenu( oDebugger ) // Builds the debugger pulldown menu
MENUITEM " code~Block Trace" ACTION Alert( "Not implemented yet!" )
MENUITEM " ~Menu Bar" ACTION Alert( "Not implemented yet!" )
MENUITEM " mono ~Display" ACTION Alert( "Not implemented yet!" )
MENUITEM " ~Colors..." ACTION Alert( "Not implemented yet!" )
MENUITEM " ~Colors..." ACTION oDebugger:SelColors()
MENUITEM " ~Tab Width..." ACTION Alert( "Not implemented yet!" )
MENUITEM " path for ~Files..." ACTION Alert( "Not implemented yet!" )
SEPARATOR

View File

@@ -93,10 +93,10 @@ METHOD New() CLASS TDbMenu
::nBottom := 0
::nRight := 0
::aItems := {}
::cClrHilite := "W+/N"
::cClrHotFocus := "GR+/N"
::cClrHotKey := "GR+/BG"
::cClrPopup := "N/BG"
::cClrPopup := __DbgColors()[ 8 ]
::cClrHotKey := __DbgColors()[ 10 ]
::cClrHilite := __DbgColors()[ 11 ]
::cClrHotFocus := __DbgColors()[ 11 ]
::nOpenPopup := 0
AAdd( ::aMenus, Self )