Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Template for new versions:
## New Features

## Fixes
- `gui/control-panel`: fixed inconsistent space in command help ("tweak" -> "tweak ", like with other commands)

## Misc Improvements

Expand Down
2 changes: 1 addition & 1 deletion gui/control-panel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ function CommandTab:init_footer(panel)
end

local function launch_help(data)
dfhack.run_command('gui/launcher', data.help_command or data.command .. ' ')
dfhack.run_command('gui/launcher', (data.help_command or data.command) .. ' ')
end

function CommandTab:show_help()
Expand Down
Loading