Skip to content

Commit

Permalink
fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kaamui committed Jun 3, 2024
1 parent 727bcf8 commit 753eada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/domain/UBGraphicsScene.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2894,7 +2894,7 @@ void UBGraphicsScene::keyReleaseEvent(QKeyEvent * keyEvent)

// Delete selection scene event
#ifdef Q_OS_MAC
if (keyEvent->key() == Qt::key_Backspace)
if (keyEvent->key() == Qt::Key_Backspace)
#else
if (keyEvent->matches(QKeySequence::Delete))
#endif
Expand Down

0 comments on commit 753eada

Please sign in to comment.