Merge pull request #3892 from myk002/myk_modal

ensure modal dialogs behave like modal dialogs
develop
Myk 2023-10-15 23:43:00 -07:00 committed by GitHub
commit 2f37212e90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 4 deletions

@ -268,6 +268,7 @@ function BuildingDialog:onInput(keys)
return true
end
self:inputToSubviews(keys)
return true
end
function showBuildingPrompt(title, prompt, on_select, on_cancel, build_filter)

@ -66,7 +66,8 @@ function MessageBox:onInput(keys)
end
return true
end
return self:inputToSubviews(keys)
self:inputToSubviews(keys)
return true
end
function showMessage(title, text, tcolor, on_close)
@ -135,7 +136,8 @@ function InputBox:onInput(keys)
end
return true
end
return self:inputToSubviews(keys)
self:inputToSubviews(keys)
return true
end
function showInputPrompt(title, text, tcolor, input, on_input, on_cancel, min_width)
@ -236,7 +238,8 @@ function ListBox:onInput(keys)
end
return true
end
return self:inputToSubviews(keys)
self:inputToSubviews(keys)
return true
end
function showListPrompt(title, text, tcolor, choices, on_select, on_cancel, min_width, filter)

@ -265,7 +265,8 @@ function MaterialDialog:onInput(keys)
end
return true
end
return self:inputToSubviews(keys)
self:inputToSubviews(keys)
return true
end
function showMaterialPrompt(title, prompt, on_select, on_cancel, mat_filter)