Hi, I'm implementing a basic completer for a code editor. One of the things that can completed is a path-like string, for instance "Perception/Persons/4352".
I have the completer working just fine when the model nodes are "Perception", "Persons" and "4352", but I wanted to experiment and try to include the trailing "/" in it (to show the user which entry has children and which hasn't). So I went ahead and now my model has nodes like "Perception/", "Persons/" and "4352". However if I type "Perception/" and invoke the completer at this point, the completion popup will show me these possibilities: - "Perception/" - "Persons/" So it's showing the parent node, "Perception/", and its child, "Persons/". Reading QCompleter source code, I cannot figure how the completion match can include one parent and its children at the same time. If anyone has an explanation, or idea how to go around this behavior, I'd glad to hear it! Thanks you for reading me, Clément
_______________________________________________ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest