Browse Source

Fix a compiler warning

v7.0.9
Tom Poole 2 years ago
parent
commit
dd90e18468
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_gui_basics/native/juce_Windowing_windows.cpp

+ 1
- 1
modules/juce_gui_basics/native/juce_Windowing_windows.cpp View File

@@ -2358,7 +2358,7 @@ public:
// The event was a keypress, rather than a text character
if (auto* target = peer->findCurrentTextInputTarget())
if (peer->findCurrentTextInputTarget() != nullptr)
{
// If there's a focused text input target, we want to attempt "real" text input with an
// IME, and we want to prevent the host from eating keystrokes (spaces etc.).


Loading…
Cancel
Save