mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-04-05 11:09:13 -04:00
GLScope: fixed pre-trigger samples initialization when trace size changes
This commit is contained in:
parent
ca52dbf5b4
commit
f245dc8206
@ -183,7 +183,6 @@ bool GLScopeGUI::deserialize(const QByteArray& data)
|
||||
setTrigUI(m_triggerIndex);
|
||||
setTrigLevelDisplay();
|
||||
applySettings();
|
||||
applyTriggerSettings();
|
||||
return true;
|
||||
} else {
|
||||
resetToDefaults();
|
||||
@ -191,6 +190,19 @@ bool GLScopeGUI::deserialize(const QByteArray& data)
|
||||
}
|
||||
}
|
||||
|
||||
void GLScopeGUI::applyAllTriggerSettings()
|
||||
{
|
||||
quint32 currentTriggerIndex = m_triggerIndex;
|
||||
|
||||
for (int i = 0; i < ScopeVis::m_nbTriggers; i++)
|
||||
{
|
||||
m_triggerIndex = i;
|
||||
applyTriggerSettings();
|
||||
}
|
||||
|
||||
m_triggerIndex = currentTriggerIndex;
|
||||
}
|
||||
|
||||
void GLScopeGUI::setTrigUI(uint index)
|
||||
{
|
||||
index %= ScopeVis::m_nbTriggers;
|
||||
@ -479,6 +491,10 @@ void GLScopeGUI::on_scope_traceSizeChanged(int)
|
||||
setTrigPreDisplay();
|
||||
setTrigDelayDisplay();
|
||||
applySettings();
|
||||
|
||||
if (m_triggerPre > 0) {
|
||||
applyAllTriggerSettings(); // change of trace size changes number of pre-trigger samples
|
||||
}
|
||||
}
|
||||
|
||||
void GLScopeGUI::on_scope_sampleRateChanged(int)
|
||||
|
@ -67,6 +67,7 @@ private:
|
||||
|
||||
void applySettings();
|
||||
void applyTriggerSettings();
|
||||
void applyAllTriggerSettings();
|
||||
void setTimeScaleDisplay();
|
||||
void setTraceLenDisplay();
|
||||
void setTimeOfsDisplay();
|
||||
|
Loading…
Reference in New Issue
Block a user