1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-23 01:44:22 +00:00

Minor fixes for mac 10.4 atomics, mouse dragging, tooltips.

This commit is contained in:
Julian Storer 2010-07-28 13:57:58 +01:00
parent b61ac0ea3c
commit dcaa6ceb36
6 changed files with 50 additions and 32 deletions

View file

@ -79,6 +79,9 @@ void TooltipWindow::mouseEnter (const MouseEvent&)
void TooltipWindow::showFor (const String& tip)
{
jassert (tip.isNotEmpty());
if (tipShowing != tip)
repaint();
tipShowing = tip;
Point<int> mousePos (Desktop::getMousePosition());