Remove function for QML Settings
-
Hi, I'm using QML with Python for an app and I have some objects that I'm creating dynamically using an Instantiator, and saving their parameters to an ini file using the Settings QML type from QtCore (not the Qt.labs.settings). Whenever I delete the objects I want to remove the associated settings (i.e. completely delete the keys, not just set the values to blank), but I can't seem to do it, and it's causing issues such as the settings for other objects being overwritten, because I'm using the indices to identify each object in the settings file. Is there a way to remove the settings from QML, without resorting to having to do it from Python?