forked from qt-creator/qt-creator
LanguageClient: Simplify group box title and fix "JSON"
It already under a title "Language Server", no need to repeat Change-Id: Ib0da722dfdaede194e48fa5f0ff3948ec0f16842 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
@@ -1117,10 +1117,10 @@ ProjectSettingsWidget::ProjectSettingsWidget(ProjectExplorer::Project *project)
|
|||||||
|
|
||||||
auto layout = new QVBoxLayout;
|
auto layout = new QVBoxLayout;
|
||||||
setLayout(layout);
|
setLayout(layout);
|
||||||
auto group = new QGroupBox(Tr::tr("Language Server Workspace Configuration"));
|
auto group = new QGroupBox(Tr::tr("Workspace Configuration"));
|
||||||
group->setLayout(new QVBoxLayout);
|
group->setLayout(new QVBoxLayout);
|
||||||
group->layout()->addWidget(new QLabel(Tr::tr(
|
group->layout()->addWidget(new QLabel(Tr::tr(
|
||||||
"Additional json configuration sent to all running language servers for this project.\n"
|
"Additional JSON configuration sent to all running language servers for this project.\n"
|
||||||
"See the documentation of the specific language server for valid settings.")));
|
"See the documentation of the specific language server for valid settings.")));
|
||||||
group->layout()->addWidget(editor->widget());
|
group->layout()->addWidget(editor->widget());
|
||||||
layout->addWidget(group);
|
layout->addWidget(group);
|
||||||
|
|||||||
Reference in New Issue
Block a user