Skip to content

Commit 8bf5f23

Browse files
committed
stream button text updated
1 parent b3963b3 commit 8bf5f23

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

logger.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@ void Logger::on_actionSettings_triggered() {
9393
void Logger::on_serverButton_toggled(bool checked) {
9494
if (checked) {
9595
udpSocket = new QUdpSocket(this);
96-
ui->serverButton->setText("Stop Server");
96+
ui->serverButton->setText("Stop Streaming");
9797
emit emitServerStatusLabel("server running on 127.0.0.1:45454");
9898
} else {
9999
udpSocket->close();
100100
delete udpSocket;
101101
udpSocket = nullptr;
102-
ui->serverButton->setText("Start Server");
102+
ui->serverButton->setText("Stream Data");
103103
emit emitServerStatusLabel("");
104104
}
105105

logger.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
<string/>
7979
</property>
8080
<property name="text">
81-
<string>Start Server</string>
81+
<string>Stream Data</string>
8282
</property>
8383
<property name="checkable">
8484
<bool>true</bool>

0 commit comments

Comments
 (0)