forked from qt-creator/qt-creator
		
	QmlJSDebugger: Renamed "execution paused" to "animation paused"
The latter better describes what is paused, since expressions are actually still executed. Suggested by Kai.
This commit is contained in:
		| @@ -195,7 +195,7 @@ void QmlToolBar::setAnimationSpeed(qreal slowDownFactor) | ||||
|     m_emitSignals = true; | ||||
| } | ||||
|  | ||||
| void QmlToolBar::setExecutionPaused(bool paused) | ||||
| void QmlToolBar::setAnimationPaused(bool paused) | ||||
| { | ||||
|     if (m_paused == paused) | ||||
|         return; | ||||
| @@ -240,7 +240,7 @@ void QmlToolBar::setColorBoxColor(const QColor &color) | ||||
| void QmlToolBar::activatePlayOnClick() | ||||
| { | ||||
|     m_paused = !m_paused; | ||||
|     emit executionPausedChanged(m_paused); | ||||
|     emit animationPausedChanged(m_paused); | ||||
|     updatePlayAction(); | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user