Skip to content

Commit

Permalink
Issue 342
Browse files Browse the repository at this point in the history
  • Loading branch information
MonkeyBars3k committed Feb 22, 2023
1 parent be99b77 commit c09a1b9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- @description MB_Superglue: Reversible, nondestructive glue and nesting pooled audio for Reaper
-- @author MonkeyBars
-- @version 1.844
-- @changelog Add Pool ID to undo string (https://github.com/MonkeyBars3k/ReaScripts/issues/290); Add link to Github ReadMe to Options window (https://github.com/MonkeyBars3k/ReaScripts/issues/311); Item Info: For Superitem, add list of siblings with positions (https://github.com/MonkeyBars3k/ReaScripts/issues/339)
-- @version 1.845
-- @changelog Smart Action: Cancelling from off-screen warning throws undo string error (https://github.com/MonkeyBars3k/ReaScripts/issues/342)
-- @provides [main] .
-- [main] MB_Superglue - Edit - Reveal contained item(s) from selected Superitem previously glued by Superglue, retaining ability to Glue back to same Pool.lua
-- [main] MB_Superglue - Options - Display - Background images on new Superglue items - Superitems diagonal, contained items horizontal stripes (On-Off).lua
Expand Down
4 changes: 3 additions & 1 deletion Superglue/MB_Superglue-Utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4015,7 +4015,9 @@ function initSmartAction(edit_or_unglue)
return
end

_smart_action_undo_block_string = _smart_action_undo_block_string .. " - Pool #" .. pool_id
if pool_id then
_smart_action_undo_block_string = _smart_action_undo_block_string .. " - Pool #" .. pool_id
end

reaper.Undo_EndBlock(_smart_action_undo_block_string, _api_include_all_undo_states)
end
Expand Down

0 comments on commit c09a1b9

Please sign in to comment.