fix: Hash string popup being way too small
This commit is contained in:
parent
8f83fe5135
commit
a844fb3731
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user