I'm getting double value quickly from user with QInputDialog. Actually, everything is fine just wondering if there is a way to write suffix next to this value.
My code:
double value = QInputDialog::getDouble(this,
tr("Change World Box Size"),
tr("Set each axis length:"),
projectJson.value("worldBox").toObject()["length"].toString().toDouble(),
0,
10000,
2,
&isOK,
Qt::Dialog,
0.1);