[frameworks-kio] [Bug 494627] Parent window fades out and re-appears according to window placement mode first time Properties window opened with Qt 6.8.0
"Akseli Lahtinen" <[email protected]>
| Newsgroups | gmane.comp.kde.devel.kfm |
|---|---|
| Message-ID | <[email protected]/> |
https://bugs.kde.org/show_bug.cgi?id=494627 --- Comment #23 from Akseli Lahtinen <[email protected]> --- 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 on the CC list for the bug.