1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-30 08:24:11 +01:00

OP-537 Move space to after the coma.

This commit is contained in:
zedamota 2011-06-22 10:11:19 +01:00
parent 61956d1ed2
commit 0d7393a8b3

View File

@ -679,7 +679,7 @@ void ConfigInputWidget::receiverHelp()
if(field->getValue().toString()=="None")
{
if(unassigned.length()>0)
unassigned.append(" ,");
unassigned.append(", ");
unassigned.append("Pitch");
}
@ -687,7 +687,7 @@ void ConfigInputWidget::receiverHelp()
if(field->getValue().toString()=="None")
{
if(unassigned.length()>0)
unassigned.append(" ,");
unassigned.append(", ");
unassigned.append("Yaw");
}
@ -695,7 +695,7 @@ void ConfigInputWidget::receiverHelp()
if(field->getValue().toString()=="None")
{
if(unassigned.length()>0)
unassigned.append(" ,");
unassigned.append(", ");
unassigned.append("Throttle");
}
@ -703,7 +703,7 @@ void ConfigInputWidget::receiverHelp()
if(field->getValue().toString()=="None")
{
if(unassigned.length()>0)
unassigned.append(" ,");
unassigned.append(", ");
unassigned.append("FlightMode");
}
if(unassigned.length()>0)