Fix 1829182: "Right click context menu not always appears".
[synfig.git] / synfig-studio / trunk / src / gtkmm / state_stroke.cpp
index fc16a32..158881d 100644 (file)
@@ -173,11 +173,6 @@ StateStroke_Context::event_mouse_up_handler(const Smach::event& x)
                        throw Smach::pop_exception();
                }
 
-       case BUTTON_RIGHT: // Intercept the right-button click to short-circuit the pop-up menu
-               printf("%s:%d BUTTON_RIGHT\n", __FILE__, __LINE__);
-               if (!getenv("SYNFIG_ENABLE_POPUP_MENU_IN_ALL_TOOLS"))
-                       return Smach::RESULT_ACCEPT;
-
        default:
                return Smach::RESULT_OK;
        }
@@ -197,11 +192,6 @@ StateStroke_Context::event_mouse_draw_handler(const Smach::event& x)
                        return Smach::RESULT_ACCEPT;
                }
 
-       case BUTTON_RIGHT: // Intercept the right-button click to short-circuit the pop-up menu
-               printf("%s:%d BUTTON_RIGHT\n", __FILE__, __LINE__);
-               if (!getenv("SYNFIG_ENABLE_POPUP_MENU_IN_ALL_TOOLS"))
-                       return Smach::RESULT_ACCEPT;
-
        default:
                return Smach::RESULT_OK;
        }