Skip to content

Commit 762a1d0

Browse files
committed
Fix naming order in tooltip
1 parent cff8dab commit 762a1d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ std::vector<lsl::stream_info> MainWindow::refreshStreams() {
351351
auto *item = new QListWidgetItem(k.listName(), ui->streamList);
352352
item->setCheckState(k.checked ? Qt::Checked : Qt::Unchecked);
353353
item->setForeground(good_brush);
354-
item->setToolTip(QString("Name: %1\nType: %2\nHostname: %3\nSource ID: %4")
354+
item->setToolTip(QString("Name: %1\nType: %2\nSource ID: %3\nHostname: %4")
355355
.arg(QString::fromStdString(k.name),
356356
QString::fromStdString(k.type),
357357
QString::fromStdString(k.id),

0 commit comments

Comments
 (0)