I'm making a simple QML app. It has a couple FileDialog instances with the following nameFilters: ``` nameFilters: ["Music files (*.mp3 *.wav *.flac *.ogg *.opus)"] // ... nameFilters: ["LRC files (*.lrc)"] ``` I seem to always get a runtime warning like: ``` kf.kio.filewidgets.kfilefiltercombo: KFileFilterCombo::setCurrentFilter: Could not find file filter KFileFilter(MIME patterns: QList() File patterns: QList("*.lrc") label: "LRC files") ``` whenever I open a file dialog on Plasma, even though I'm not using any KIO API. How would I go about fixing this warning? This warning is very cryptic and I don't understand it. The code is in https://codeberg.org/herzenschein/klrc