We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74b1a87 commit 3a9b29cCopy full SHA for 3a9b29c
src/ties_remove_dangling.lua
@@ -33,19 +33,8 @@ local smartshape = require("library.smartshape")
33
34
local music_region = finale.FCMusicRegion()
35
music_region:SetCurrentSelection()
36
-
37
if music_region:IsEmpty() then
38
- local str1 = finale.FCString()
39
- local str2 = finale.FCString()
40
- str1.LuaString = "Process whole document?"
41
- str2.LuaString = "No Selection."
42
- local ui = finenv.UI()
43
- local result = ui:AlertYesNo(str1.LuaString, str2.LuaString)
44
- if result == 2 then
45
- music_region:SetFullDocument()
46
- else
47
- goto bypass
48
- end
+ music_region:SetFullDocument()
49
end
50
51
for working_staff = music_region:GetStartStaff(), music_region:GetEndStaff() do
0 commit comments