1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00
This commit is contained in:
jules 2008-05-18 21:10:35 +00:00
parent 671de59be3
commit e08ebbf2e6
111 changed files with 1232 additions and 1461 deletions

View file

@ -104,8 +104,6 @@ static bool isUnboundedMouseModeOn = false;
static bool isCursorVisibleUntilOffscreen;
//==============================================================================
const int juce_windowIsSemiTransparentFlag = (1 << 31); // duplicated in native windowing code
#define checkMessageManagerIsLocked jassert (MessageManager::getInstance()->currentThreadHasLockedMessageManager());
static uint32 nextComponentUID = 0;
@ -439,7 +437,7 @@ void Component::addToDesktop (int styleWanted, void* nativeWindowToAttachTo)
checkMessageManagerIsLocked
if (! isOpaque())
styleWanted |= juce_windowIsSemiTransparentFlag;
styleWanted |= ComponentPeer::windowIsSemiTransparent;
int currentStyleFlags = 0;