forked from mirror/openmw-tes3mp
Fix mouse tracking to fix tooltip behavior. Also hide tooltips
when the mouse is moved.
This commit is contained in:
parent
12eea9ed69
commit
7657684dad
2 changed files with 6 additions and 0 deletions
|
@ -173,6 +173,9 @@ SceneWidget::SceneWidget(boost::shared_ptr<Resource::ResourceSystem> resourceSys
|
|||
|
||||
mResourceSystem->getSceneManager()->setParticleSystemMask(Mask_ParticleSystem);
|
||||
|
||||
// Recieve mouse move event even if mouse button is not pressed
|
||||
setMouseTracking(true);
|
||||
|
||||
/// \todo make shortcut configurable
|
||||
QShortcut *focusToolbar = new QShortcut (Qt::Key_T, this, 0, 0, Qt::WidgetWithChildrenShortcut);
|
||||
connect (focusToolbar, SIGNAL (activated()), this, SIGNAL (focusToolbarRequest()));
|
||||
|
|
|
@ -646,7 +646,10 @@ void CSVRender::WorldspaceWidget::mouseMoveEvent (QMouseEvent *event)
|
|||
mToolTipPos = event->globalPos();
|
||||
|
||||
if (mShowToolTips)
|
||||
{
|
||||
QToolTip::hideText();
|
||||
mToolTipDelayTimer.start (mToolTipDelay);
|
||||
}
|
||||
}
|
||||
|
||||
SceneWidget::mouseMoveEvent(event);
|
||||
|
|
Loading…
Reference in a new issue