impr: Make about page resizable

This commit is contained in:
WerWolv
2023-05-13 12:26:13 +02:00
parent a7327290ea
commit aa1bf0b764
2 changed files with 2 additions and 3 deletions

View File

@@ -194,8 +194,7 @@ namespace hex::plugin::builtin {
}
void ViewAbout::drawAboutPopup() {
ImGui::SetNextWindowSize(scaled(ImVec2(600, 350)), ImGuiCond_Always);
if (ImGui::BeginPopupModal(View::toWindowName("hex.builtin.view.help.about.name").c_str(), &this->m_aboutWindowOpen, ImGuiWindowFlags_NoResize)) {
if (ImGui::BeginPopupModal(View::toWindowName("hex.builtin.view.help.about.name").c_str(), &this->m_aboutWindowOpen)) {
if (ImGui::IsKeyDown(ImGui::GetKeyIndex(ImGuiKey_Escape)))
ImGui::CloseCurrentPopup();