1
0
mirror of synced 2024-11-28 09:30:51 +01:00

fix: Hash string popup being way too small

This commit is contained in:
WerWolv 2023-12-17 23:47:42 +01:00
parent 8f83fe5135
commit a844fb3731

View File

@ -45,6 +45,12 @@ namespace hex::plugin::builtin {
return ImGuiWindowFlags_AlwaysAutoResize; return ImGuiWindowFlags_AlwaysAutoResize;
} }
ImVec2 getMinSize() const override {
return scaled({ 400, 200 });
}
ImVec2 getMaxSize() const override { return this->getMinSize(); }
private: private:
std::string m_input; std::string m_input;
std::string m_result; std::string m_result;