aboutsummaryrefslogtreecommitdiffstats
path: root/src/gui/NodeView.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/NodeView.cpp')
-rw-r--r--src/gui/NodeView.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/NodeView.cpp b/src/gui/NodeView.cpp
index 62be95b..f34c658 100644
--- a/src/gui/NodeView.cpp
+++ b/src/gui/NodeView.cpp
@@ -34,10 +34,11 @@ void
NodeView::on_double_click(GdkEventButton*)
{
bool is_initial = _node->is_initial();
- std::cerr << "INITIAL " << is_initial;
+ std::cerr << "Initial: " << is_initial << std::endl;
_node->set_initial( ! is_initial );
}
+
void
NodeView::update_state()
{
@@ -52,3 +53,4 @@ NodeView::update_state()
set_base_color(_old_color);
}
}
+