diff --git a/configDialog.py b/configDialog.py index 0d43572..f8cfb85 100644 --- a/configDialog.py +++ b/configDialog.py @@ -61,10 +61,11 @@ class ConfigDialog(Toplevel): 'Selected Text':('hilite', '06'), 'Found Text':('hit', '07'), 'Cursor':('cursor', '08'), - 'Error Text':('error', '09'), - 'Shell Normal Text':('console', '10'), - 'Shell Stdout Text':('stdout', '11'), - 'Shell Stderr Text':('stderr', '12'), + 'Breakpoint':('break', '09'), + 'Error Text':('error', '10'), + 'Shell Normal Text':('console', '11'), + 'Shell Stdout Text':('stdout', '12'), + 'Shell Stderr Text':('stderr', '13'), } self.ResetChangedItems() #load initial values in changed items dict self.CreateWidgets() @@ -232,7 +233,8 @@ class ConfigDialog(Toplevel): ('list', 'builtin'), ('(', 'normal'), ('None', 'keyword'), (')\n\n', 'normal'), (' error ', 'error'), (' ', 'normal'), - ('cursor |', 'cursor'), ('\n ', 'normal'), + ('cursor |', 'cursor'), (' ', 'normal'), + ('breakpoint', 'break'), ('\n ', 'normal'), ('shell', 'console'), (' ', 'normal'), ('stdout', 'stdout'), (' ', 'normal'), ('stderr', 'stderr'), ('\n', 'normal'))