diff options
| author | ruki <[email protected]> | 2020-05-09 22:46:18 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-05-09 22:46:18 +0800 |
| commit | 58c103c2de177e7cd0b87cf39e88a257a223aa91 (patch) | |
| tree | 7290f9b6d2c4afb03e3e84e4d254d04206f9be40 | |
| parent | a7720294713d5c86afcf8b2f9260fdcf6706ce96 (diff) | |
fix mconfdialog
| -rw-r--r-- | xmake/core/ui/mconfdialog.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/ui/mconfdialog.lua b/xmake/core/ui/mconfdialog.lua index 6dbe0fd5c..ebf568de3 100644 --- a/xmake/core/ui/mconfdialog.lua +++ b/xmake/core/ui/mconfdialog.lua @@ -194,7 +194,7 @@ function mconfdialog:searchdialog() results = results .. "\nkind: " .. config.kind end if config.default then - results = results .. "\ndefault: " .. config.default + results = results .. "\ndefault: " .. tostring(config.default) end if config.path then results = results .. "\npath: " .. config.path |
