forked from teamnwah/openmw-tes3coop
Merge remote-tracking branch 'aesylwinn/FixTracking'
This commit is contained in:
commit
447ba08be5
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,8 +646,11 @@ 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