add .desktop icons

This commit is contained in:
2023-03-02 15:13:54 +01:00
parent f91c9f1a6f
commit 9908d959ce
4 changed files with 25 additions and 7 deletions

View File

@ -104,7 +104,7 @@ void VhfMill::jog(VhfMill::Axis axis, int jogDirection)
jogAxis_ = axis;
jogDirection_ = jogDirection;
jogDirection = jogDirection == -1 ? 1 : 0;
QByteArray command("GA");
QByteArray command("GB");
if(axis == AXIS_X)
command.append(QByteArray::number(getLimits()[0]*jogDirection));
else