Slight speed increase to fade in/out effect for TAS bookmark preview popup for Qt GUI.

This commit is contained in:
mjbudd77 2021-12-28 22:11:30 -05:00
parent 57ed6d8ecc
commit 425e3104de
1 changed files with 2 additions and 2 deletions

View File

@ -6587,7 +6587,7 @@ void bookmarkPreviewPopup::periodicUpdate(void)
{
if ( alpha < 255 )
{
alpha += 10;
alpha += 15;
if ( alpha > 255 )
{
@ -6602,7 +6602,7 @@ void bookmarkPreviewPopup::periodicUpdate(void)
{
if ( alpha > 0 )
{
alpha -= 10;
alpha -= 15;
if ( alpha < 0 )
{