Fix bug with reverting a composition/canvas not being deleted
[synfig.git] / synfig-studio / src / gtkmm / state_fill.cpp
index 60c929a..f4df2ba 100644 (file)
@@ -30,6 +30,7 @@
 #endif
 
 #include "state_fill.h"
+#include "state_normal.h"
 #include "workarea.h"
 #include <synfig/context.h>
 #include "app.h"
@@ -121,7 +122,9 @@ Smach::event_result
 StateFill_Context::event_stop_handler(const Smach::event& /*x*/)
 {
        synfig::info("STATE FILL: Received Stop Event");
-       throw Smach::egress_exception();
+       //throw Smach::egress_exception();
+       throw &state_normal;
+       return Smach::RESULT_OK;
 //     canvas_view->get_smach().pop_state();
 //     return Smach::RESULT_ACCEPT;
 }