From: Thomas Debesse Date: Tue, 15 Aug 2023 17:04:37 +0000 (+0200) Subject: Restore “Show All” menu option in texture browser, fix #181 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=cbbab98198989a68f14611154afa790231c93545;p=xonotic%2Fnetradiant.git Restore “Show All” menu option in texture browser, fix #181 This option was probably mistakenly removed in https://gitlab.com/xonotic/netradiant/-/merge_requests/193 --- diff --git a/radiant/texwindow.cpp b/radiant/texwindow.cpp index 70ce3d29..22559b6a 100644 --- a/radiant/texwindow.cpp +++ b/radiant/texwindow.cpp @@ -1898,6 +1898,8 @@ ui::MenuItem TextureBrowser_constructViewMenu( ui::Menu menu ){ } create_check_menu_item_with_mnemonic( menu, "Hide _Unused", "ShowInUse" ); + create_menu_item_with_mnemonic( menu, "Show All", "ShowAllTextures" ); + if ( string_empty( g_pGameDescription->getKeyValue( "show_wads" ) ) ) { create_check_menu_item_with_mnemonic( menu, "Hide Image Missing", "FilterMissing" ); }