diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/wm_layer.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wm_layer.cpp b/src/wm_layer.cpp index 66fb0a2..4eceb43 100644 --- a/src/wm_layer.cpp +++ b/src/wm_layer.cpp @@ -251,8 +251,10 @@ void WMLayer::dump() { DUMP("===== wm layer status ====="); DUMP("Layer :%s", this->name.c_str()); - this->tmp_state.dump(); + DUMP(" [Current]"); this->state.dump(); + DUMP(" [To be]"); + this->tmp_state.dump(); DUMP("===== wm layer status end ====="); } |