logic: Fixed graph nodes restoring their expand state

bug id = 118
This commit is contained in:
Eberhard Graether
2016-08-09 15:32:14 +02:00
parent b9f518feed
commit 9cda1e773d
3 changed files with 16 additions and 9 deletions
@@ -8,9 +8,10 @@ class MessageGraphNodeExpand
: public Message<MessageGraphNodeExpand>
{
public:
MessageGraphNodeExpand(Id tokenId, bool expand)
MessageGraphNodeExpand(Id tokenId, bool expand, bool ignoreIfNotReplayed = false)
: tokenId(tokenId)
, expand(expand)
, ignoreIfNotReplayed(ignoreIfNotReplayed)
{
}
@@ -34,6 +35,7 @@ public:
const Id tokenId;
const bool expand;
const bool ignoreIfNotReplayed;
};
#endif // MESSAGE_GRAPH_NODE_EXPAND_H