diff --git a/src/add-ons/decorators/SATDecorator/StackAndTile.cpp b/src/add-ons/decorators/SATDecorator/StackAndTile.cpp index 8c35123435..d1d72288dd 100644 --- a/src/add-ons/decorators/SATDecorator/StackAndTile.cpp +++ b/src/add-ons/decorators/SATDecorator/StackAndTile.cpp @@ -126,7 +126,8 @@ StackAndTile::KeyPressed(uint32 what, int32 key, int32 modifiers) _StartSAT(); } - if (!SATKeyPressed() || what != B_KEY_DOWN) + if (!SATKeyPressed() || (modifiers & B_COMMAND_KEY) == 0 + || what != B_KEY_DOWN) return false; const int kArrowKeyUp = 87;