mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-02 22:34:52 -04:00
--User changes
-Change how the PositiveYUp option is actually handled to make things more compatible with Apophysis. depending on the value of that option: --Moving an affine up or down will mean a positive or negative value. --Locally, the display of the affine will be flipped. --Bug fixes -Fix waffle.
This commit is contained in:
@ -456,7 +456,7 @@ void Fractorium::OnMoveUpButtonClicked(bool checked)
|
||||
double d = ToDouble(combo->currentText(), &ok);
|
||||
|
||||
if (ok)
|
||||
m_Controller->MoveXforms(0, d, pre);
|
||||
m_Controller->MoveXforms(0, m_Settings->YAxisUp() ? d : -d, pre);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@ -473,7 +473,7 @@ void Fractorium::OnMoveDownButtonClicked(bool checked)
|
||||
double d = ToDouble(combo->currentText(), &ok);
|
||||
|
||||
if (ok)
|
||||
m_Controller->MoveXforms(0, -d, pre);
|
||||
m_Controller->MoveXforms(0, m_Settings->YAxisUp() ? -d : d, pre);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
Reference in New Issue
Block a user