From 0b1005aa3961b6674e65520075658e049fd41293 Mon Sep 17 00:00:00 2001 From: Mattia Basaglia Date: Sun, 19 Jul 2015 15:43:08 +0200 Subject: [PATCH] Group purely visual options in the menu --- radiant/texwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radiant/texwindow.cpp b/radiant/texwindow.cpp index 0d8f52b6..622170c1 100644 --- a/radiant/texwindow.cpp +++ b/radiant/texwindow.cpp @@ -1624,7 +1624,9 @@ GtkMenuItem* TextureBrowser_constructViewMenu( GtkMenu* menu ){ create_menu_item_with_mnemonic( menu, "Show Untagged", "ShowUntagged" ); } + menu_separator( menu ); create_check_menu_item_with_mnemonic( menu, "Fixed Size", "FixedSize" ); + create_check_menu_item_with_mnemonic( menu, "Transparency", "EnableAlpha" ); if ( string_empty( g_pGameDescription->getKeyValue( "show_wads" ) ) ) { menu_separator( menu ); @@ -1632,8 +1634,6 @@ GtkMenuItem* TextureBrowser_constructViewMenu( GtkMenu* menu ){ gtk_widget_set_sensitive( g_TextureBrowser.m_shader_info_item, FALSE ); } - menu_separator( menu ); - create_check_menu_item_with_mnemonic( menu, "Show Transparency", "EnableAlpha" ); return textures_menu_item; } -- 2.39.2