<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How to make FileDialog(Qt Quick) can be dropped and dragged on MacOS]]></title><description><![CDATA[<p dir="auto">My code below</p>
<pre><code>import QtQuick
import QtQuick.Dialogs

Window {
    width: 640
    height: 480
    visible: true
    title: qsTr("Hello World")

    MouseArea {
        anchors.fill: parent
        onClicked: {
            fileDialog.open()
        }
    }

    FileDialog {
        id : fileDialog
        modality: Qt.ApplicationModal
    }
}

</code></pre>
<p dir="auto">On MacOS (M1) the FileDialog can't be dropped and dragged(On windows is OK). Is there a way to fix it? Thanks.</p>
]]></description><link>https://forum.qt.io/topic/154177/how-to-make-filedialog-qt-quick-can-be-dropped-and-dragged-on-macos</link><generator>RSS for Node</generator><lastBuildDate>Sat, 06 Jun 2026 16:58:53 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/154177.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 29 Jan 2024 14:13:36 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to make FileDialog(Qt Quick) can be dropped and dragged on MacOS on Mon, 29 Jan 2024 20:07:49 GMT]]></title><description><![CDATA[<p dir="auto">Hi and welcome to devnet,</p>
<p dir="auto">If memory serves well, you should have a file dialog that is shown as a drawer which is an integral part of the application window. That's usual on macOS for modal dialogs.</p>
]]></description><link>https://forum.qt.io/post/788227</link><guid isPermaLink="true">https://forum.qt.io/post/788227</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Mon, 29 Jan 2024 20:07:49 GMT</pubDate></item></channel></rss>