aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python/pythoneditor.cpp
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@qt.io>2025-02-06 15:20:28 +0100
committerDavid Schulz <david.schulz@qt.io>2025-02-10 12:17:20 +0000
commit441a1b3e91ace045d73902122cf9928b23143ba7 (patch)
tree1084b519595e2f9c315f9f71c27bab0014b50bc9 /src/plugins/python/pythoneditor.cpp
parent5b5423b44220b683a6d3743396792961c7429a68 (diff)
Python: Fix assigning python documents to a pyls
The entry for document check was introduced to avolid adding temporary documents to a python language server, but it seems it does not work reliable. Using the explicit Document::isTemporary is superior for this check. Fixes: QTCREATORBUG-32468 Change-Id: Ie6e920e975a3dcc0fe17eeae02e7d3b9610e08e6 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/python/pythoneditor.cpp')
-rw-r--r--src/plugins/python/pythoneditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/python/pythoneditor.cpp b/src/plugins/python/pythoneditor.cpp
index 49f59483ab5..ca8ecff0ee9 100644
--- a/src/plugins/python/pythoneditor.cpp
+++ b/src/plugins/python/pythoneditor.cpp
@@ -296,7 +296,7 @@ PythonDocument::PythonDocument()
void PythonDocument::updateCurrentPython()
{
- if (Core::DocumentModel::entryForDocument(this))
+ if (!isTemporary())
updatePython(detectPython(filePath()));
}