Add code for skip: delete, enable, disable.

This commit is contained in:
Ernie Pasveer
2025-03-29 11:24:27 -05:00
parent ffb9ef5c4e
commit b12e9d25b1
5 changed files with 168 additions and 6 deletions
+1 -1
View File
@@ -169,7 +169,7 @@ void SeerVariableLoggerBrowserWidget::handleDeleteToolButton () {
QList<QTreeWidgetItem*> items = variablesTreeWidget->selectedItems();
// Remove them.
for(int i=0; i<items.size(); i++){
for (int i=0; i<items.size(); i++) {
delete items[i];
}