From fe35536faedf4c5b7ed8989554a05f4e301b7fb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20Ker=C3=A4nen?= Date: Sat, 12 Apr 2014 17:03:28 +0300 Subject: [PATCH] Shell|GUI: Better label for checkbox --- doomsday/tools/shell/shell-gui/src/localserverdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doomsday/tools/shell/shell-gui/src/localserverdialog.cpp b/doomsday/tools/shell/shell-gui/src/localserverdialog.cpp index 1044626db9..357325ef9f 100644 --- a/doomsday/tools/shell/shell-gui/src/localserverdialog.cpp +++ b/doomsday/tools/shell/shell-gui/src/localserverdialog.cpp @@ -92,7 +92,7 @@ DENG2_PIMPL(LocalServerDialog) opt->setDisabled(true); form->addRow(0, opt); - form->addRow(0, announce = new QCheckBox(tr("&Public server (visible to all)"))); + form->addRow(0, announce = new QCheckBox(tr("&Public server: visible to all"))); announce->setChecked(st.value("LocalServer/announce", false).toBool()); QHBoxLayout *hb = new QHBoxLayout;