Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: xiaoming <[email protected]>
  • Loading branch information
QQxiaoming committed Jul 22, 2024
1 parent fc84cef commit 09277b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internalcommandwindow/internalcommandprocess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void InternalCommandProcess::processLine(const QString &sline) {
static const int maxCmdNameCount = [&]() -> int {
int ret = 0;
foreach(const struct Command &cmd, commands) {
ret = qMax(ret, cmd.name.count());
ret = qMax(ret, cmd.name.size());
}
return ret;
}();
Expand Down

0 comments on commit 09277b3

Please sign in to comment.