mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-04-03 18:08:40 -04:00
Boost all message letters to upper case, even if tx6 editing is not 'finished'.
This commit is contained in:
parent
ba83ae0587
commit
cabd6bc869
@ -4013,6 +4013,7 @@ void MainWindow::ba2msg(QByteArray ba, char message[]) //ba2msg()
|
||||
int iz=ba.length();
|
||||
for(int i=0; i<37; i++) {
|
||||
if(i<iz) {
|
||||
if(int(ba[i])>=97 and int(ba[i])<=122) ba[i]=int(ba[i])-32;
|
||||
message[i]=ba[i];
|
||||
} else {
|
||||
message[i]=32;
|
||||
|
Loading…
Reference in New Issue
Block a user