Skip to content
Snippets Groups Projects
Commit 890d7734 authored by Mathias Paulin's avatar Mathias Paulin :speech_balloon:
Browse files

Small Mara UI Fix

parent 6fe68e7f
No related branches found
No related tags found
No related merge requests found
...@@ -454,6 +454,7 @@ void MainWindow::on_actionPlay_triggered( bool checked ) { ...@@ -454,6 +454,7 @@ void MainWindow::on_actionPlay_triggered( bool checked ) {
} }
void MainWindow::on_actionStop_triggered() { void MainWindow::on_actionStop_triggered() {
on_actionPlay_triggered( false );
Ra::Engine::RadiumEngine::getInstance()->resetTime(); Ra::Engine::RadiumEngine::getInstance()->resetTime();
actionPlay->setChecked( false ); actionPlay->setChecked( false );
emit frameUpdate(); emit frameUpdate();
...@@ -503,8 +504,7 @@ void MainWindow::timelinePlay( bool play ) { ...@@ -503,8 +504,7 @@ void MainWindow::timelinePlay( bool play ) {
actionPlay->setChecked( play ); actionPlay->setChecked( play );
if ( !m_lockTimeSystem ) if ( !m_lockTimeSystem )
{ {
Ra::Engine::RadiumEngine::getInstance()->play( play ); on_actionPlay_triggered( play );
// mainApp->setContinuousUpdate( play );
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment