1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-21 15:51:47 -05:00

Compare commits

...

3 Commits

Author SHA1 Message Date
f4exb
4daf06bed7 Upgrade external/windows to latest commit. Adds fftwf-wisdom exe in the FFTW bulk 2021-11-02 17:31:49 +01:00
Edouard Griffiths
9cf7d0e541
Merge pull request #1033 from srcejon/fix_1031
#1031 - RemoteInput GUI - Use editingFinished signal rather than returnPressed
2021-11-02 16:22:37 +01:00
Jon Beniston
d52f2569c6 #1031 - RemoteInput GUI - Use editingFinished signal rather than returnPressed 2021-11-02 11:20:30 +00:00
3 changed files with 11 additions and 11 deletions

2
external/windows vendored

@ -1 +1 @@
Subproject commit f20b21d50f9ef3930f6979759adc5af32f65c92a
Subproject commit 5980a9e4ffaf58b68381000f0157c6a41105980f

View File

@ -330,7 +330,7 @@ void RemoteInputGui::on_dataApplyButton_clicked(bool checked)
sendSettings();
}
void RemoteInputGui::on_apiAddress_returnPressed()
void RemoteInputGui::on_apiAddress_editingFinished()
{
m_settings.m_apiAddress = ui->apiAddress->text();
@ -341,14 +341,14 @@ void RemoteInputGui::on_apiAddress_returnPressed()
sendSettings();
}
void RemoteInputGui::on_dataAddress_returnPressed()
void RemoteInputGui::on_dataAddress_editingFinished()
{
m_settings.m_dataAddress = ui->dataAddress->text();
ui->dataApplyButton->setEnabled(true);
ui->dataApplyButton->setStyleSheet("QPushButton { background-color : green; }");
}
void RemoteInputGui::on_dataPort_returnPressed()
void RemoteInputGui::on_dataPort_editingFinished()
{
bool ok;
quint16 udpPort = ui->dataPort->text().toInt(&ok);
@ -364,7 +364,7 @@ void RemoteInputGui::on_dataPort_returnPressed()
ui->dataApplyButton->setStyleSheet("QPushButton { background-color : green; }");
}
void RemoteInputGui::on_multicastAddress_returnPressed()
void RemoteInputGui::on_multicastAddress_editingFinished()
{
m_settings.m_multicastAddress = ui->multicastAddress->text();
ui->dataApplyButton->setEnabled(true);
@ -378,7 +378,7 @@ void RemoteInputGui::on_multicastJoin_toggled(bool checked)
ui->dataApplyButton->setStyleSheet("QPushButton { background-color : green; }");
}
void RemoteInputGui::on_apiPort_returnPressed()
void RemoteInputGui::on_apiPort_editingFinished()
{
bool ctlOk;
int udpApiPort = ui->apiPort->text().toInt(&ctlOk);

View File

@ -120,11 +120,11 @@ private slots:
void on_dataApplyButton_clicked(bool checked);
void on_dcOffset_toggled(bool checked);
void on_iqImbalance_toggled(bool checked);
void on_apiAddress_returnPressed();
void on_apiPort_returnPressed();
void on_dataAddress_returnPressed();
void on_dataPort_returnPressed();
void on_multicastAddress_returnPressed();
void on_apiAddress_editingFinished();
void on_apiPort_editingFinished();
void on_dataAddress_editingFinished();
void on_dataPort_editingFinished();
void on_multicastAddress_editingFinished();
void on_multicastJoin_toggled(bool checked);
void on_startStop_toggled(bool checked);
void on_eventCountsReset_clicked(bool checked);