Add parsing of floating_nodes to container_t

This commit is contained in:
Francesco Galizzi
2020-04-26 17:58:58 +02:00
parent 386b31403e
commit 498454aee8
2 changed files with 9 additions and 0 deletions

View File

@@ -202,6 +202,7 @@ struct container_t {
window_properties_t window_properties; /// X11 window properties
std::list< std::shared_ptr<container_t> > nodes;
std::list< std::shared_ptr<container_t> > floating_nodes;
};