05.04.2013, 09:55
I found a bug.
When i want to set manually the position or the size, the Y doesnt work, because the X override the Y value in these two situation.
I fixed with these two changes:
Change this:
To:
And change this:
To:
Modified source code: http://www.solidfiles.com/d/cd9784c3ef/
Compiled AMX: https://www.solidfiles.com/d/884a1373b4/
Btw it is a very useful script, thank you for it!
When i want to set manually the position or the size, the Y doesnt work, because the X override the Y value in these two situation.
I fixed with these two changes:
Change this:
pawn Код:
Project[EditIndex][iPositionX] = iTemp1;
Project[EditIndex][iPositionX] = iTemp2;
pawn Код:
Project[EditIndex][iPositionX] = iTemp1;
Project[EditIndex][iPositionY] = iTemp2;
pawn Код:
Project[EditIndex][iTextX] = iTemp1;
Project[EditIndex][iTextX] = iTemp2;
pawn Код:
Project[EditIndex][iTextX] = iTemp1;
Project[EditIndex][iTextY] = iTemp2;
Compiled AMX: https://www.solidfiles.com/d/884a1373b4/
Btw it is a very useful script, thank you for it!
