From 091ab8a3a37b6057dc3a5a4df6b1a049a8f3795d Mon Sep 17 00:00:00 2001 From: ed Date: Wed, 27 Jan 2021 17:23:09 +0000 Subject: [PATCH] Made the windowIgnoresKeyPresses ComponentPeer style flag documentation a bit clearer --- modules/juce_gui_basics/windows/juce_ComponentPeer.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/juce_gui_basics/windows/juce_ComponentPeer.h b/modules/juce_gui_basics/windows/juce_ComponentPeer.h index b41716abd7..73e73f7cc3 100644 --- a/modules/juce_gui_basics/windows/juce_ComponentPeer.h +++ b/modules/juce_gui_basics/windows/juce_ComponentPeer.h @@ -70,7 +70,8 @@ public: performAnyPendingRepaintsNow() method is called. */ windowIgnoresKeyPresses = (1 << 10), /**< Tells the window not to catch any keypresses. This can be used for things like plugin windows, to stop them interfering - with the host's shortcut keys */ + with the host's shortcut keys. This will prevent the window from + gaining keyboard focus. */ windowIsSemiTransparent = (1 << 30) /**< Not intended for public use - makes a window transparent. */ };