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) {}; }; }