Skip to content

Commit

Permalink
GUI: Remove unnecessary translation calls
Browse files Browse the repository at this point in the history
  • Loading branch information
chennes committed Aug 20, 2022
1 parent ff01905 commit 84253f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Gui/DlgCustomizeSpaceball.cpp
Expand Up @@ -282,7 +282,7 @@ QString ButtonModel::getLabel(const int &number) const
GetGroup(numberString.toLatin1())->
GetASCII("Description",""));
if (desc.length())
desc = tr(" \"") + desc + tr("\"");
desc = QString::fromUtf8(" \"") + desc + QString::fromUtf8("\"");
return tr("Button %1").arg(number + 1) + desc;
} else
return tr("Out Of Range");
Expand Down

0 comments on commit 84253f4

Please sign in to comment.