ide: Fixed deleting breakpoints from PanelView (editing/enter) #679: Had superfluous...
authorJerome St-Louis <jerome@ecere.com>
Sun, 5 Feb 2012 13:22:31 +0000 (20:22 +0700)
committerJerome St-Louis <jerome@ecere.com>
Sun, 5 Feb 2012 13:22:31 +0000 (20:22 +0700)
It only happened in Linux because of Panels' ListBox/Delete key bug #680

ide/src/panels/BreakpointsView.ec

index be80d8f..8ed11c2 100644 (file)
@@ -46,7 +46,8 @@ class BreakpointsView : Window
             else
             {
                ide.workspace.RemoveBreakpoint((Breakpoint)row.tag);
-               listBox.DeleteRow(null);
+               // This is already done by Workspace::RemoveBreakpoint!
+               // listBox.DeleteRow(null);
             }
          }
          else if(listBox.currentField == ignoreField || listBox.currentField == levelField)