mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-16 16:47:41 +02:00
Bug 2600 - Compact project followed by undo restores the last saved state
Uncompacted projects use up 50% or so more space than they could. The 'compact' feature as currently implemented is confusing, and does not merit inclusion given the lowish saving. So featured disabled/removed.
This commit is contained in:
parent
3189d05f87
commit
ad85755101
@ -622,10 +622,15 @@ BaseItemSharedPtr FileMenu()
|
||||
AudioIONotBusyFlag() ),
|
||||
Command( wxT("SaveCopy"), XXO("&Backup Project..."), FN(OnSaveCopy),
|
||||
AudioIONotBusyFlag() )
|
||||
),
|
||||
)//,
|
||||
|
||||
Command( wxT("Compact"), XXO("Co&mpact Project"), FN(OnCompact),
|
||||
AudioIONotBusyFlag(), wxT("Shift+A") )
|
||||
// Bug 2600: Compact has interactions with undo/history that are bound
|
||||
// to confuse some users. We don't see a way to recover useful amounts
|
||||
// of space and not confuse users using undo.
|
||||
// As additional space used by aup3 is 50% or so, perfectly valid
|
||||
// approach to this P1 bug is to not provide the 'Compact' menu item.
|
||||
//Command( wxT("Compact"), XXO("Co&mpact Project"), FN(OnCompact),
|
||||
// AudioIONotBusyFlag(), wxT("Shift+A") )
|
||||
),
|
||||
|
||||
Section( "Import-Export",
|
||||
|
Loading…
x
Reference in New Issue
Block a user