Skip to content
Snippets Groups Projects
Commit 00d552d6 authored by Gatien Ferret's avatar Gatien Ferret
Browse files

Merge branch 'fix/PlayPauseController' into 'master'

[fix] Fix play/pause icon in controller bar

See merge request !355
parents 10413ecd 7b704405
No related branches found
No related tags found
1 merge request!355[fix] Fix play/pause icon in controller bar
Pipeline #295814 passed
Pipeline: LidarView

#295815

    ......@@ -153,7 +153,7 @@ void lqPlayerControlsController::onPause()
    pqLiveSourceBehavior::pause();
    }
    // Manually notify toolbar
    Q_EMIT this->playing(!paused);
    Q_EMIT this->playing(paused);
    }
    }
    ......@@ -182,7 +182,7 @@ void lqPlayerControlsController::onPlay()
    pqLiveSourceBehavior::pause();
    }
    // Manually notify toolbar
    Q_EMIT this->playing(!paused);
    Q_EMIT this->playing(paused);
    }
    }
    //-----------------------------------------------------------------------------
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment