Forgot a '0' in tool tip commit

This commit is contained in:
Seth Hillbrand 2021-01-08 10:27:27 -08:00
parent c5b6cf722d
commit e73b852c2a
1 changed files with 1 additions and 1 deletions

View File

@ -457,7 +457,7 @@ bool PGM_BASE::InitPgm()
// TODO: Move tooltips into KIPLATFORM
// This sets the maximum tooltip display duration to 10s (up from 5) but only affects
// Windows as other platforms display tooltips while the mouse is not moving
wxToolTip::SetAutoPop( 1000 );
wxToolTip::SetAutoPop( 10000 );
return true;
}