From 5726e52df2a6539f244b613e9383b89979230612 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Thu, 5 Jan 2023 13:23:08 +0100 Subject: [PATCH] ui: Make content store resizable again --- plugins/builtin/include/content/views/view_store.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/builtin/include/content/views/view_store.hpp b/plugins/builtin/include/content/views/view_store.hpp index 619c040b0..0e4a02770 100644 --- a/plugins/builtin/include/content/views/view_store.hpp +++ b/plugins/builtin/include/content/views/view_store.hpp @@ -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;