From bfe13b6d5452ecd0a3f9f0765215e20ecca135a7 Mon Sep 17 00:00:00 2001 From: Nav Date: Wed, 17 Aug 2022 19:32:32 +0100 Subject: [PATCH] Restored deleted constructor (still needed) --- .../UserInterfaces/InsightWindow/Widgets/PanelState.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/PanelState.hpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/PanelState.hpp index cc710ff8..6d194f70 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/PanelState.hpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/PanelState.hpp @@ -6,5 +6,8 @@ namespace Bloom::Widgets { int size = 0; bool open = false; + + PanelState() = default; + PanelState(int size, bool open): size(size), open(open) {}; }; }