-
Notifications
You must be signed in to change notification settings - Fork 17
qmlls popup when opening project that contains QML files #324
Comments
@AndreiMiculita, using https://marketplace.visualstudio.com/_apis/public/gallery/publishers/seanwu/vsextensions/vscode-qt-for-python/7.6.0/vspackage on
|
I am also getting the same issue. it's inconvenient. |
Same here! With every start of vscode (or the extensions of it) it pops up... |
Me too, waiting fo solution |
Here having the same issue |
I've been looking into this and it's extremely strange. It looks initially like the stdout from running This would suggest that it may actually be This is all just a long way of saying I still don't know if this is a problem with the extension or Edit: On further inspection I'm reasonably confident now that the popup we're seeing is actually being created by Workaround: It seems to be that if A slightly gnarly workaround is to edit your working environment's returncode = subprocess.call(cmd) to returncode = subprocess.call(cmd, stdout=sys.stdout, stderr=sys.stderr) By explicitly attaching to stdout, the popup is suppressed. For this to be fixed permanently will require a change from Qt. I've raised the issue at https://bugreports.qt.io/browse/PYSIDE-2838 |
If I understand this correctly, the extension is executing
|
Describe the Bug
When opening a project that contains QML files (in a certain subfolder) in VS Code I get an error popup detailing the usage of qmlls.
To Reproduce Steps to reproduce the behavior:
Screenshots If applicable, add screenshots to help explain your problem.
This can be dismissed by pressing "OK" but it's inconvenient. Would be nice to know the cause at least.
Environment (please complete the following information)
Extension Configurations None configured, all left default
The text was updated successfully, but these errors were encountered: