diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-07-13 18:05:32 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-07-13 18:05:32 -0500 |
commit | 5622d7cf2c00002201e724774669aaedcfb451c3 (patch) | |
tree | adca5ab21cdcc9cc096741a17e8b658ff3fc2150 /clients/tde/src | |
parent | 35e842f0c565a8d644565febdf5e08e6e841f59a (diff) | |
download | ulab-5622d7cf2c00002201e724774669aaedcfb451c3.tar.gz ulab-5622d7cf2c00002201e724774669aaedcfb451c3.zip |
Fix last commit
Diffstat (limited to 'clients/tde/src')
-rw-r--r-- | clients/tde/src/part/commanalyzer/part.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/clients/tde/src/part/commanalyzer/part.cpp b/clients/tde/src/part/commanalyzer/part.cpp index 5080e47..a5c3e4d 100644 --- a/clients/tde/src/part/commanalyzer/part.cpp +++ b/clients/tde/src/part/commanalyzer/part.cpp @@ -575,9 +575,11 @@ void CommAnalyzerPart::mainEventLoop() { #if 1 // Trace grap is slow on most instruments // Put in the next trace request before processing the trace we just got so as to increase the overall update rate - // Get trace, step 1 - ds << TQString("GETSPECTRUMTRACE"); - m_socket->writeEndOfFrame(); + if (m_commHandlerMode == 0) { + // Get trace, step 1 + ds << TQString("GETSPECTRUMTRACE"); + m_socket->writeEndOfFrame(); + } #endif // Update display widget(s) |