Restored deleted constructor (still needed)

This commit is contained in:
Nav
2022-08-17 19:32:32 +01:00
parent 5c81f2665c
commit bfe13b6d54

View File

@@ -6,5 +6,8 @@ namespace Bloom::Widgets
{
int size = 0;
bool open = false;
PanelState() = default;
PanelState(int size, bool open): size(size), open(open) {};
};
}