diff options
Diffstat (limited to 'xmake/core/ui')
| -rw-r--r-- | xmake/core/ui/mconfdialog.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xmake/core/ui/mconfdialog.lua b/xmake/core/ui/mconfdialog.lua index 4f0fb5283..5c1941f36 100644 --- a/xmake/core/ui/mconfdialog.lua +++ b/xmake/core/ui/mconfdialog.lua @@ -204,6 +204,12 @@ function mconfdialog:show_help() if config.default then text = text .. "\ndefault: " .. tostring(config.default) end + if config.kind == "choice" then + text = text .. "\nvalues: " + for _, value in ipairs(config.values) do + text = text .. "\n - " .. value + end + end self:helpdialog():text():text_set(text) -- show help |
