mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-03 03:30:06 +00:00
Tweaks to VST for building on linux; improved linux code for detecting the executable's file path; small changes to linux window hinting; change on the Mac to fix app shutdown when the app isn't currently active; added Mac support for 3rd mouse button; fix to AudioDeviceManager thread safety when changing midi output devices; fix to DrawableButton text; made ComponentAnimator a change broadcaster to send messages when animations stop and start; small fix to DatagramSocket.
This commit is contained in:
parent
7d2a7af8a5
commit
749c2be6cb
30 changed files with 2358 additions and 2230 deletions
|
|
@ -1619,7 +1619,7 @@ void Component::updateMouseCursor() const throw()
|
|||
sendFakeMouseMove();
|
||||
}
|
||||
|
||||
void Component::internalUpdateMouseCursor (const bool forcedUpdate) throw()
|
||||
void Component::internalUpdateMouseCursor (bool forcedUpdate) throw()
|
||||
{
|
||||
ComponentPeer* const peer = getPeer();
|
||||
|
||||
|
|
@ -1632,6 +1632,7 @@ void Component::internalUpdateMouseCursor (const bool forcedUpdate) throw()
|
|||
|| ! isCursorVisibleUntilOffscreen))
|
||||
{
|
||||
mc = MouseCursor::NoCursor;
|
||||
forcedUpdate = true;
|
||||
}
|
||||
|
||||
static void* currentCursorHandle = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue