Fix import for file dialog

Without this, the page fails to load, showing nothing, because the FileDialog element doesn't exist.
I don't know why this is necessary for Qt6, but we had to do this for all other FileDialog uses too.

Done as a 5-minute fix.
This commit is contained in:
Ghostkeeper 2022-05-16 15:10:26 +02:00
parent 77f5c91b77
commit 94fc3981a3
No known key found for this signature in database
GPG key ID: 68F39EA88EEED5FF

View file

@ -5,7 +5,7 @@ import QtQuick 2.2
import QtQuick.Controls 2.1
import QtQuick.Layouts 1.1
import QtQuick.Window 2.1
import QtQuick.Dialogs 6.0 // For filedialog
import QtQuick.Dialogs // For filedialog
import UM 1.5 as UM
import Cura 1.0 as Cura