mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-06-30 13:26:02 -04:00
--Bug fixes
-Don't apply keyboard edits to affines when alt is pressed.
This commit is contained in:
@ -419,7 +419,8 @@ bool Fractorium::eventFilter(QObject* o, QEvent* e)
|
||||
if (!focusedctrlEdit &&
|
||||
!focusedctrlSpin &&
|
||||
!focusedctrlDblSpin &&
|
||||
!focusedctrlCombo)//Must exclude these because otherwise, typing a minus key in any of the spinners will switch the xform.
|
||||
!focusedctrlCombo &&
|
||||
!QGuiApplication::keyboardModifiers().testFlag(Qt::AltModifier))//Must exclude these because otherwise, typing a minus key in any of the spinners will switch the xform. Also exclude alt.
|
||||
{
|
||||
unsigned int index = combo->currentIndex();
|
||||
double vdist = 0.01;
|
||||
|
Reference in New Issue
Block a user