// Purpose: Implementation of wxRichToolTip.
// Author: Vadim Zeitlin
// Created: 2011-10-07
-// RCS-ID: $Id$
// Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
if ( !rect || rect->IsEmpty() )
pos = GetTipPoint();
else
- pos = wxPoint( rect->x + rect->width / 2, rect->y + rect->height / 2 );
+ pos = GetParent()->ClientToScreen( wxPoint( rect->x + rect->width / 2, rect->y + rect->height / 2 ) );
// We want our anchor point to coincide with this position so offset
// the position of the top left corner passed to Move() accordingly.
SetShape(path);
#else // !wxUSE_GRAPHICS_CONTEXT
+ wxUnusedVar(tipKind);
+
int x = contentSize.x/2,
yApex = 0,
dy = 0;