mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-01-21 21:20:07 -05:00
--Bug fixes
-Don't apply keyboard edits to affines when alt is pressed.
This commit is contained in:
parent
ed35622928
commit
6a14ef89e4
@ -419,7 +419,8 @@ bool Fractorium::eventFilter(QObject* o, QEvent* e)
|
|||||||
if (!focusedctrlEdit &&
|
if (!focusedctrlEdit &&
|
||||||
!focusedctrlSpin &&
|
!focusedctrlSpin &&
|
||||||
!focusedctrlDblSpin &&
|
!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();
|
unsigned int index = combo->currentIndex();
|
||||||
double vdist = 0.01;
|
double vdist = 0.01;
|
||||||
|
Loading…
Reference in New Issue
Block a user