mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Made sure that win32 file dialogs are resizeable.
This commit is contained in:
parent
0e82af90bc
commit
0a51a8d99f
1 changed files with 1 additions and 1 deletions
|
|
@ -198,7 +198,7 @@ void FileChooser::showPlatformDialog (Array<File>& results, const String& title_
|
|||
}
|
||||
else
|
||||
{
|
||||
DWORD flags = OFN_EXPLORER | OFN_PATHMUSTEXIST | OFN_NOCHANGEDIR | OFN_HIDEREADONLY;
|
||||
DWORD flags = OFN_EXPLORER | OFN_PATHMUSTEXIST | OFN_NOCHANGEDIR | OFN_HIDEREADONLY | OFN_ENABLESIZING;
|
||||
|
||||
if (warnAboutOverwritingExistingFiles)
|
||||
flags |= OFN_OVERWRITEPROMPT;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue