mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-09-06 07:07:49 -04:00
Working on Echo mode.
This commit is contained in:
parent
fd4a2e3b61
commit
a69e3756b6
@ -71,7 +71,7 @@ message (STATUS "******************************************************")
|
|||||||
|
|
||||||
include (set_build_type)
|
include (set_build_type)
|
||||||
# RC 0 or omitted is a development build, GA is a General Availability release build
|
# RC 0 or omitted is a development build, GA is a General Availability release build
|
||||||
set_build_type (RC 2)
|
set_build_type (RC 3)
|
||||||
set (wsjtx_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}${BUILD_TYPE_REVISION}")
|
set (wsjtx_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}${BUILD_TYPE_REVISION}")
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -4691,9 +4691,11 @@ void MainWindow::guiUpdate()
|
|||||||
|
|
||||||
progressBar.setVisible(true);
|
progressBar.setVisible(true);
|
||||||
progressBar.setFormat ("%v/%m");
|
progressBar.setFormat ("%v/%m");
|
||||||
if(m_auto and m_mode=="Echo" and m_bEchoTxOK) {
|
if(m_mode=="Echo") {
|
||||||
progressBar.setMaximum(3);
|
progressBar.setMaximum(3);
|
||||||
progressBar.setValue(int(s6));
|
int n=0;
|
||||||
|
if(m_transmitting or m_monitoring) n=int(s6)%3;
|
||||||
|
progressBar.setValue(n);
|
||||||
}
|
}
|
||||||
if(m_mode!="Echo") {
|
if(m_mode!="Echo") {
|
||||||
if(m_monitoring or m_transmitting) {
|
if(m_monitoring or m_transmitting) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user