> On Nov. 15, 2014, 12:16 a.m., Martin Klapetek wrote: > > src/platformtheme/kdeplatformfiledialoghelper.cpp, lines 301-303 > > <https://git.reviewboard.kde.org/r/121098/diff/1/?file=327582#file327582line301> > > > > Looking at QDialog docs, it says > > > > "modal : bool > > This property holds whether show() should pop up the dialog as modal or > > modeless." > > > > So as the modal is being set here, shouldn't the "if (windowModality == > > Qt::NonModal) {" just be removed instead and always call show()? > > Jeremy Whiting wrote: > Yep, I've tried just removing the if, that makes it appear when the > static QFileDialog methods are called, but you can't interact with it. > Clicking anywhere in the dialog itself does nothing. As reported here: > https://bugs.kde.org/show_bug.cgi?id=334963
The main issue I see here is that show() is always expected to not block; if the QML dialogs wanted to use the blocking version, it would internally just call exec() rather than show(). So putting blocking exec() into show() is imho not right. Have you tried investigating why the dialog cannot be interacted with? I can have a look if you want - Martin ----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121098/#review70384 ----------------------------------------------------------- On Nov. 10, 2014, 7:17 p.m., Jeremy Whiting wrote: > > ----------------------------------------------------------- > This is an automatically generated e-mail. To reply, visit: > https://git.reviewboard.kde.org/r/121098/ > ----------------------------------------------------------- > > (Updated Nov. 10, 2014, 7:17 p.m.) > > > Review request for KDE Frameworks and Eike Hein. > > > Repository: frameworkintegration > > > Description > ------- > > Before David's astyle commit, the show method used to call m_dialog->exec > if the window flags weren't nonmodal (i.e. modal dialogs). This got removed > somehow. > BUG:334963 > > > Diffs > ----- > > src/platformtheme/kdeplatformfiledialoghelper.cpp > 44eca192946f0da2b357b33e93a57ef0de05135b > > Diff: https://git.reviewboard.kde.org/r/121098/diff/ > > > Testing > ------- > > fifteen puzzle config with patch from > https://git.reviewboard.kde.org/r/121097/ now shows the dialog and lets you > choose a file. > > > Thanks, > > Jeremy Whiting > >
_______________________________________________ Kde-frameworks-devel mailing list Kde-frameworks-devel@kde.org https://mail.kde.org/mailman/listinfo/kde-frameworks-devel