Browse Source

macOS: Fixed some issues with 32-bit builds

tags/2021-05-28
ed 5 years ago
parent
commit
920f86eace
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      modules/juce_gui_basics/native/juce_mac_NSViewComponentPeer.mm

+ 5
- 1
modules/juce_gui_basics/native/juce_mac_NSViewComponentPeer.mm View File

@@ -1535,11 +1535,15 @@ private:
case NSEventTypeRotate:
case NSEventTypeBeginGesture:
case NSEventTypeEndGesture:
case NSEventTypeSmartMagnify:
case NSEventTypeQuickLook:
#if JUCE_64BIT
case NSEventTypeSmartMagnify:
case NSEventTypePressure:
#endif
#if defined (MAC_OS_X_VERSION_10_12) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_12
#if JUCE_64BIT
case NSEventTypeDirectTouch:
#endif
#if defined (MAC_OS_X_VERSION_10_15) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_15
case NSEventTypeChangeMode:
#endif


Loading…
Cancel
Save