Don't render the Radial Blur layer when quality is 10.
[synfig.git] / synfig-studio / trunk / src / gtkmm / state_polygon.cpp
index f2eb6d4..09caf4f 100644 (file)
@@ -47,6 +47,8 @@
 #include "dialog_tooloptions.h"
 #include <synfigapp/main.h>
 
+#include "general.h"
+
 #endif
 
 /* === U S I N G =========================================================== */
@@ -423,7 +425,8 @@ StatePolygon_Context::event_mouse_click_handler(const Smach::event& x)
                return Smach::RESULT_ACCEPT;
 
        case BUTTON_RIGHT: // Intercept the right-button click to short-circuit the pop-up menu
-               return Smach::RESULT_ACCEPT;
+               if (!getenv("SYNFIG_ENABLE_POPUP_MENU_IN_ALL_TOOLS"))
+                       return Smach::RESULT_ACCEPT;
 
        default:
                return Smach::RESULT_OK;