Explorar el Código

Properly remove connections

Marcus Huderle hace 6 años
padre
commit
c553980105
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5
    0
      editor.cpp

+ 5
- 0
editor.cpp Ver fichero

@@ -166,6 +166,11 @@ void Editor::showCurrentConnectionMap(QString curDirection) {
166 166
             scene->removeItem(connection_item);
167 167
             delete connection_item;
168 168
             connection_item = NULL;
169
+
170
+            if (map->connection_items.contains(curDirection)) {
171
+                delete map->connection_items.value(curDirection);
172
+                map->connection_items.remove(curDirection);
173
+            }
169 174
         }
170 175
 
171 176
         ui->comboBox_ConnectedMap->setCurrentText("");