Mentions légales du service

Skip to content
Snippets Groups Projects

Fix list of displayed nodes in Node Selection window

Merged Philippe SWARTVAGHER requested to merge pswartva/vite:fix-node-selection-window into master
1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
@@ -168,7 +168,9 @@ void Node_select::set_container_names_rec(QTreeWidgetItem *current_node, Contain
children = current_container->get_view_children();
}
if( (load_view == false) || (children == NULL)) {
/* children cannot be NULL when accessed, because it means load_view==true
* and thus, children was assigned in the above condition block. */
if(load_view==false || children->empty()) {
children = current_container->get_children();
}
Loading