Make tooltips independent of cursor auto-hide.
This commit is contained in:
parent
461d89cb22
commit
0971ed1f2c
1 changed files with 10 additions and 10 deletions
|
@ -387,7 +387,6 @@ void FGMouseInput::update ( double dt )
|
|||
}
|
||||
}
|
||||
|
||||
if ( d->hideCursor ) {
|
||||
// if delay is <= 0, disable tooltips
|
||||
if ( !d->tooltipTimeoutDone &&
|
||||
(d->tooltipDelayMsec > 0) &&
|
||||
|
@ -398,6 +397,7 @@ void FGMouseInput::update ( double dt )
|
|||
globals->get_commands()->execute("tooltip-timeout", arg);
|
||||
}
|
||||
|
||||
if ( d->hideCursor ) {
|
||||
if ( m.timeSinceLastMove.elapsedMSec() > d->cursorTimeoutMsec) {
|
||||
FGMouseCursor::instance()->hideCursorUntilMouseMove();
|
||||
m.timeSinceLastMove.stamp();
|
||||
|
|
Loading…
Reference in a new issue