Fixed send button initial frame count. Fixed apple specific text counting
This commit is contained in:
parent
6436e163bd
commit
4e981da9c8
@ -551,7 +551,9 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
|
|||||||
m_manual {&m_network_manager},
|
m_manual {&m_network_manager},
|
||||||
m_txFrameCount {0},
|
m_txFrameCount {0},
|
||||||
m_txTextDirty {false},
|
m_txTextDirty {false},
|
||||||
m_previousFreq {0}
|
m_previousFreq {0},
|
||||||
|
m_txFrameCountEstimate {0},
|
||||||
|
m_txFrameCount {0}
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
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
|
#define USE_SYNC_FRAME_COUNT 0
|
||||||
|
#endif
|
||||||
|
|
||||||
void MainWindow::refreshTextDisplay(){
|
void MainWindow::refreshTextDisplay(){
|
||||||
qDebug() << "refreshing text display...";
|
qDebug() << "refreshing text display...";
|
||||||
|
Loading…
Reference in New Issue
Block a user