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

@@ -52,7 +52,7 @@ namespace hex {
if (!this->m_windowOpen)
return;
if (ImGui::Begin("Pattern Data", &this->m_windowOpen)) {
if (ImGui::Begin("Pattern Data", &this->m_windowOpen, ImGuiWindowFlags_NoCollapse)) {
if (this->m_dataProvider != nullptr && this->m_dataProvider->isReadable()) {
if (beginPatternDataTable(this->m_dataProvider, this->m_patternData, this->m_sortedPatternData)) {