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:
@@ -884,8 +884,8 @@ void InspectorUi::connectSignals()
|
||||
m_toolBar, SLOT(setSelectedColor(QColor)));
|
||||
connect(m_clientProxy, SIGNAL(animationSpeedChanged(qreal)),
|
||||
m_toolBar, SLOT(setAnimationSpeed(qreal)));
|
||||
connect(m_clientProxy, SIGNAL(executionPausedChanged(bool)),
|
||||
m_toolBar, SLOT(setExecutionPaused(bool)));
|
||||
connect(m_clientProxy, SIGNAL(animationPausedChanged(bool)),
|
||||
m_toolBar, SLOT(setAnimationPaused(bool)));
|
||||
|
||||
connect(m_toolBar, SIGNAL(applyChangesFromQmlFileTriggered(bool)),
|
||||
this, SLOT(setApplyChangesToQmlObserver(bool)));
|
||||
@@ -896,8 +896,8 @@ void InspectorUi::connectSignals()
|
||||
m_clientProxy, SLOT(reloadQmlViewer()));
|
||||
connect(m_toolBar, SIGNAL(animationSpeedChanged(qreal)),
|
||||
m_clientProxy, SLOT(setAnimationSpeed(qreal)));
|
||||
connect(m_toolBar, SIGNAL(executionPausedChanged(bool)),
|
||||
m_clientProxy, SLOT(setExecutionPaused(bool)));
|
||||
connect(m_toolBar, SIGNAL(animationPausedChanged(bool)),
|
||||
m_clientProxy, SLOT(setAnimationPaused(bool)));
|
||||
connect(m_toolBar, SIGNAL(colorPickerSelected()),
|
||||
m_clientProxy, SLOT(changeToColorPickerTool()));
|
||||
connect(m_toolBar, SIGNAL(zoomToolSelected()),
|
||||
|
||||
Reference in New Issue
Block a user