Remove collapse button from all windows

This commit is contained in:
WerWolv
2020-11-23 15:51:58 +01:00
parent 5c0f6a1e50
commit 3b3f2226f1
9 changed files with 9 additions and 9 deletions

View File

@@ -187,7 +187,7 @@ struct MemoryEditor
CalcSizes(s, mem_size, base_display_addr);
ImGui::SetNextWindowSizeConstraints(ImVec2(0.0f, 0.0f), ImVec2(s.WindowWidth, FLT_MAX));
if (ImGui::Begin(title, &Open, ImGuiWindowFlags_NoScrollbar))
if (ImGui::Begin(title, &Open, ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse))
{
DrawContents(mem_data, mem_size, base_display_addr);
if (ContentsWidthChanged)