Description, because “alt text” can’t show it well:
{
emit differentFiles (ckFile.absoluteFilePath(),
otherFile.absoluteFilePath(),
FileCompareWorker::FileComparisonParams{FileComparisonParams::FileNameMatch,
(ckFile.size() > otherFile.size()) ? FileComparisonParams::File1IsLarger
: FileComparisonParams::File2IsLarger});
}
After Alignment
{
emit differentFiles (ckFile.absoluteFilePath(),
otherFile.absoluteFilePath(),
FileCompareWorker::FileComparisonParams{FileComparisonParams::FileNameMatch,
(ckFile.size() > otherFile.size()) ? FileComparisonParams::File1IsLarger
: FileComparisonParams::File2IsLarger});
}
You shouldn’t use tabs for alignment. It breaks for everyone with a different tab size.
You shouldn’t align code anyway.
If it’s important to have stuff on the same column, make it an indentation level and add a line break where it starts.
if you don’t want alignment don’t be surprised when your code doesn’t align 🤷
If that’s supposed to be a pun, I didn’t get it.