summaryrefslogtreecommitdiff
path: root/src/plugins/python/pythonutils.cpp
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2020-07-02 09:55:02 +0200
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2020-07-02 09:26:20 +0000
commit58bcf2878b3e22e0a727aa5a19e33c57fbd245ac (patch)
tree879a14f447490a0ae5aef5965b489d60fbc117f5 /src/plugins/python/pythonutils.cpp
parentafd5c70c85f8ee3d6324e16fcde6557af8a95337 (diff)
downloadqt-creator-58bcf2878b3e22e0a727aa5a19e33c57fbd245ac.tar.gz
Python: Fix UI text capitalization
Change-Id: Ie180d6e8b8af35c7bb79c9f8a371262b219ce65e Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/python/pythonutils.cpp')
-rw-r--r--src/plugins/python/pythonutils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/python/pythonutils.cpp b/src/plugins/python/pythonutils.cpp
index 6cf646a27a..bd28d749b7 100644
--- a/src/plugins/python/pythonutils.cpp
+++ b/src/plugins/python/pythonutils.cpp
@@ -433,7 +433,7 @@ void PyLSConfigureAssistant::handlePyLSState(const FilePath &python,
Utils::InfoBarEntry info(startPylsInfoBarId,
message,
Utils::InfoBarEntry::GlobalSuppression::Enabled);
- info.setCustomButtonInfo(tr("Setup"),
+ info.setCustomButtonInfo(tr("Set Up"),
[=]() { setupPythonLanguageServer(python, document); });
infoBar->addInfo(info);
m_infoBarEntries[python] << document;