From e7018bd75abd10d3303fe77a7b223636bb9c54d5 Mon Sep 17 00:00:00 2001 From: Yoshiaki Kasahara Date: Thu, 20 Nov 2025 18:59:40 +0900 Subject: [PATCH] fix: Fix broken
tag in the tooltop of suggested IP addresses --- src/lib/gui/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/gui/MainWindow.cpp b/src/lib/gui/MainWindow.cpp index 2455d9833..ea2e44f5a 100644 --- a/src/lib/gui/MainWindow.cpp +++ b/src/lib/gui/MainWindow.cpp @@ -628,7 +628,7 @@ void MainWindow::updateNetworkInfo() if (auto toolTipBase = tr("

If connecting via the hostname fails, try %1

"); ipList.count() < 2) { ui->lblIpAddresses->setToolTip(toolTipBase.arg(tr("the suggested IP."))); } else { - ui->lblIpAddresses->setToolTip(toolTipBase.arg(tr("one of the following IPs:
%1").arg(ipList.join("br/>")))); + ui->lblIpAddresses->setToolTip(toolTipBase.arg(tr("one of the following IPs:
%1").arg(ipList.join("
")))); } }