aboutsummaryrefslogtreecommitdiffstats
path: root/source/file.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/file.cpp')
-rw-r--r--source/file.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/file.cpp b/source/file.cpp
index f6222fa..96dac0a 100644
--- a/source/file.cpp
+++ b/source/file.cpp
@@ -122,7 +122,10 @@ void fileRenderMenu()
void fileRenderDialog()
{
- if (ImGuiFileDialog::Instance()->Display("ChooseFileOpenSave")) {
+ if (ImGuiFileDialog::Instance()->Display("ChooseFileOpenSave",
+ ImGuiWindowFlags_NoCollapse,
+ ImVec2(460, 540)))
+ {
if (ImGuiFileDialog::Instance()->IsOk()) {
std::string filePathName = ImGuiFileDialog::Instance()->GetFilePathName();