Skip to content

Commit

Permalink
Left align type string in CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
hfedcba committed Nov 5, 2017
1 parent 1e068f6 commit 73c66b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MyCentral.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ std::string MyCentral::handleCliCommand(std::string command)
typeID += "...";
}
else typeID.resize(typeWidth2, ' ');
stringStream << std::setw(typeWidth2) << typeID;
stringStream << typeID;
}
else stringStream << std::setw(typeWidth2);
stringStream << std::endl << std::dec;
Expand Down

0 comments on commit 73c66b3

Please sign in to comment.