We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62629cf commit e7b81bfCopy full SHA for e7b81bf
1 file changed
Menu.cpp
@@ -170,8 +170,9 @@ void menuDraw(ToolState* state) {
170
}
171
ImGui::EndMenuBar();
172
173
- if (ImGuiFileDialog::Instance()->Display("ChooseFileDlgKey", 32, ImVec2(320,320)) ||
174
- ImGuiFileDialog::Instance()->Display("SaveFileDlgKey", 32,
+ if (ImGuiFileDialog::Instance()->Display("ChooseFileDlgKey", 32 | ImGuiWindowFlags_NoDocking, ImVec2(320,320)) ||
+ ImGuiFileDialog::Instance()->Display("SaveFileDlgKey",
175
+ 32 | ImGuiWindowFlags_NoDocking,
176
ImVec2(320, 320))) {
177
178
if (ImGuiFileDialog::Instance()->IsOk()) { // action if OK
0 commit comments