From: Mattia Basaglia Date: Sun, 19 Jul 2015 07:41:06 +0000 (+0200) Subject: Now that the dialog has the flip buttons, the menu is no longer needed X-Git-Tag: xonotic-v0.8.1~1^2~5^2~3 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=50a295176a1a8003725637837144880a271f3374;p=xonotic%2Fnetradiant.git Now that the dialog has the flip buttons, the menu is no longer needed --- diff --git a/radiant/patchmanip.cpp b/radiant/patchmanip.cpp index e8d75fe5..e42fdc37 100644 --- a/radiant/patchmanip.cpp +++ b/radiant/patchmanip.cpp @@ -804,16 +804,6 @@ void Patch_constructMenu( GtkMenu* menu ){ create_menu_item_with_mnemonic( menu_in_menu, "Set", "MakeOverlayPatch" ); create_menu_item_with_mnemonic( menu_in_menu, "Clear", "ClearPatchOverlays" ); } - menu_separator( menu ); - { - GtkMenu* menu_in_menu = create_sub_menu_with_mnemonic( menu, "Texture" ); - if ( g_Layout_enableDetachableMenus.m_value ) { - menu_tearoff( menu_in_menu ); - } - create_menu_item_with_mnemonic( menu_in_menu, "Flip Horizontally", "InvertCurveTextureX" ); - create_menu_item_with_mnemonic( menu_in_menu, "Flip Vertically", "InvertCurveTextureY" ); - create_menu_item_with_mnemonic( menu_in_menu, "Naturalize", "NaturalizePatch" ); - } }