Compare commits

...

4 Commits

Author SHA1 Message Date
WerWolv d0b3a60a09 build: Bumped version to 1.26.2 2023-01-05 16:37:53 +01:00
WerWolv 15f2376c62 sys: Fixed some variable names 2023-01-05 16:27:52 +01:00
WerWolv efeeea37f6 build: Updated libromfs properly 2023-01-05 16:27:16 +01:00
WerWolv 5726e52df2 ui: Make content store resizable again 2023-01-05 13:23:08 +01:00
4 changed files with 7 additions and 7 deletions

View File

@ -1 +1 @@
1.26.1
1.26.2

@ -1 +1 @@
Subproject commit beec45afc942209cc34d30f99eac42b2bb04aa79
Subproject commit 59d8ceccb0b668e16a5d2b25c457514c9e8c1493

View File

@ -128,9 +128,9 @@ namespace hex::init {
}
ImGui::Render();
int display_w, display_h;
glfwGetFramebufferSize(this->m_window, &display_w, &display_h);
glViewport(0, 0, display_w, display_h);
int displayWidth, displayHeight;
glfwGetFramebufferSize(this->m_window, &displayWidth, &displayHeight);
glViewport(0, 0, displayWidth, displayHeight);
glClearColor(0.00F, 0.00F, 0.00F, 0.00F);
glClear(GL_COLOR_BUFFER_BIT);
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());

View File

@ -44,8 +44,8 @@ namespace hex::plugin::builtin {
[[nodiscard]] bool isAvailable() const override { return true; }
[[nodiscard]] bool hasViewMenuItemEntry() const override { return false; }
[[nodiscard]] ImVec2 getMinSize() const override { return { 500, 400 }; }
[[nodiscard]] ImVec2 getMaxSize() const override { return { 500, 400 }; }
[[nodiscard]] ImVec2 getMinSize() const override { return { 600, 400 }; }
[[nodiscard]] ImVec2 getMaxSize() const override { return { 800, 600 }; }
private:
Net m_net;