From b2c8867dc19dde322883de44d9d5eae255778809 Mon Sep 17 00:00:00 2001 From: Olivier Le Doeuff Date: Fri, 13 Oct 2023 14:09:04 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20DialogManager=20showOpenFilesDia?= =?UTF-8?q?log=20correctly=20forward=20call=20(#149)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Before, showOpenFilesDialog was calling showOpenFileDialog. --- qml/Qaterial/DialogManager.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/Qaterial/DialogManager.qml b/qml/Qaterial/DialogManager.qml index b027b95a..4fd96ee6 100644 --- a/qml/Qaterial/DialogManager.qml +++ b/qml/Qaterial/DialogManager.qml @@ -35,7 +35,7 @@ QtObject function showOpenFilesDialog(settings) { if(dialogLoader) - dialogLoader.showOpenFileDialog(settings) + dialogLoader.showOpenFilesDialog(settings) } function showFolderDialog(settings)