Fixed send button initial frame count. Fixed apple specific text counting

This commit is contained in:
Jordan Sherer 2018-11-01 00:37:29 -04:00
parent 6436e163bd
commit 4e981da9c8

View File

@ -551,7 +551,9 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
m_manual {&m_network_manager},
m_txFrameCount {0},
m_txTextDirty {false},
m_previousFreq {0}
m_previousFreq {0},
m_txFrameCountEstimate {0},
m_txFrameCount {0}
{
ui->setupUi(this);
@ -8020,7 +8022,12 @@ void MainWindow::updateTextDisplay(){
}
}
#if __APPLE__
#define USE_SYNC_FRAME_COUNT 1
#else
#define USE_SYNC_FRAME_COUNT 0
#endif
void MainWindow::refreshTextDisplay(){
qDebug() << "refreshing text display...";