Skip to content

Commit

Permalink
Use string args to address Camila's feedback
Browse files Browse the repository at this point in the history
Signed-off-by: Claudio Cambra <claudio.cambra@gmail.com>
  • Loading branch information
claucambra committed Jun 22, 2022
1 parent bafc6f3 commit cf40e62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/UserStatusSelector.qml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ ColumnLayout {
Layout.fillWidth: true
flat: !hovered
hoverEnabled: true
text: modelData.icon + " <b>" + modelData.message + "</b> - " + userStatusSelectorModel.clearAtReadable(modelData)
text: "%1 <b>%2</b> - %3".arg(modelData.icon).arg(modelData.message).arg(userStatusSelectorModel.clearAtReadable(modelData))
onClicked: userStatusSelectorModel.setPredefinedStatus(modelData)
}
}
Expand Down

0 comments on commit cf40e62

Please sign in to comment.