Open GoogleCodeExporter opened 8 years ago
maybe it is same like in issue 100, but only for Mode 2 and Mode 4 "default
stick mode"
Original comment by gbir...@gmail.com
on 21 Oct 2011 at 6:17
Trims AIL AND RUD are also joined in mode 3
Original comment by romolo.m...@gmail.com
on 21 Oct 2011 at 9:09
r273 is OK. But from r274 to current the trims are messed up.
Original comment by gbir...@gmail.com
on 4 Nov 2011 at 8:10
problem is in modeledit.ccp
see the differencies:
http://code.google.com/p/eepe/source/diff?spec=svn284&r=274&format=side&path=/tr
unk/src/modeledit.cpp&old_path=/trunk/src/modeledit.cpp&old=264
in attachment is corrected code.
Original comment by gbir...@gmail.com
on 4 Nov 2011 at 8:30
Attachments:
Yes problem is in model edit but correct fix is to change the following
functions as listed below
void ModelEdit::on_spinBox_S1_valueChanged(int value)
{
g_model.trim[0] = value;
updateSettings();
}
void ModelEdit::on_spinBox_S2_valueChanged(int value)
{
g_model.trim[1] = value;
updateSettings();
}
void ModelEdit::on_spinBox_S3_valueChanged(int value)
{
g_model.trim[2] = value;
updateSettings();
}
void ModelEdit::on_spinBox_S4_valueChanged(int value)
{
g_model.trim[3] = value;
updateSettings();
}
Original comment by romolo.m...@gmail.com
on 4 Nov 2011 at 9:46
Seem to have been solved by release 285
Mode 3 works without troubles.
Original comment by romolo.m...@gmail.com
on 5 Nov 2011 at 2:15
thanks its solved.
Please close issue.
Original comment by gbir...@gmail.com
on 6 Nov 2011 at 9:00
Original issue reported on code.google.com by
gbir...@gmail.com
on 17 Oct 2011 at 7:08