https://bugs.kde.org/show_bug.cgi?id=494627

--- Comment #23 from Akseli Lahtinen <akse...@akselmo.dev> ---
After going this through with GDB, it seems that the dolphin main window closes
when this bit of code is being iterated in `kpropertiesdialog.cpp`

```cpp

    const auto jsonPlugins =
KPluginMetaData::findPlugins(QStringLiteral("kf6/propertiesdialog"), filter);
    for (const auto &jsonMetadata : jsonPlugins) {
        if (auto plugin =
KPluginFactory::instantiatePlugin<KPropertiesDialogPlugin>(jsonMetadata,
q).plugin) {
            insertPlugin(plugin);
        }
    }
```

The exact part being:
```
(auto plugin =
KPluginFactory::instantiatePlugin<KPropertiesDialogPlugin>(jsonMetadata,
q).plugin)
```

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to