1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-14 09:03:54 +01:00

Bug2312: don't crash using Wave Color, Format, Rate sub-menus of TCP

This commit is contained in:
Paul Licameli
2020-02-08 13:01:23 -05:00
parent c2888302fd
commit 8f88aa106e
3 changed files with 16 additions and 15 deletions

View File

@@ -792,7 +792,7 @@ BEGIN_POPUP_MENU(WaveTrackMenuTable)
) );
if( hasWaveform ){
BEGIN_POPUP_MENU_SECTION( "WaveColor" )
POPUP_MENU_SUB_MENU( "WaveColor", WaveColorMenuTable)
POPUP_MENU_SUB_MENU( "WaveColor", WaveColorMenuTable, mpData )
END_POPUP_MENU_SECTION()
}
@@ -825,11 +825,11 @@ BEGIN_POPUP_MENU(WaveTrackMenuTable)
END_POPUP_MENU_SECTION()
BEGIN_POPUP_MENU_SECTION( "Format" )
POPUP_MENU_SUB_MENU( "Format", FormatMenuTable)
POPUP_MENU_SUB_MENU( "Format", FormatMenuTable, mpData )
END_POPUP_MENU_SECTION()
BEGIN_POPUP_MENU_SECTION( "Rate" )
POPUP_MENU_SUB_MENU( "Rate", RateMenuTable)
POPUP_MENU_SUB_MENU( "Rate", RateMenuTable, mpData )
END_POPUP_MENU_SECTION()
END_POPUP_MENU()