aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2023-04-03 10:14:34 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2023-04-03 11:49:00 +0000
commit707b7587e92d2e318fbc4f6d7bb6a83ee872d1a9 (patch)
tree27c6aaf29351ee3b23ce0f1dd69946cd854a51e0
parent2e458381e4847f46814518da9f7cfca097aa8bc4 (diff)
pyside6-designer: Remove Qt Designer examples from PYSIDE_DESIGNER_PLUGINS
Complements ffb87075e3c4ea4b0a2dd15321af8c1921e33164. Task-number: PYSIDE-2247 Change-Id: I715572d42d9c098996f2005d01f82fb363a5c8c2 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io> Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io> (cherry picked from commit b20b722c0b3d38dddb65c6889cabd30c4cfa72aa) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--sources/pyside-tools/pyside_tool.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/sources/pyside-tools/pyside_tool.py b/sources/pyside-tools/pyside_tool.py
index 7c9be28b1..cbb2e98f1 100644
--- a/sources/pyside-tools/pyside_tool.py
+++ b/sources/pyside-tools/pyside_tool.py
@@ -158,11 +158,6 @@ def designer():
# Find Python DLLs from the base installation
if is_virtual_env():
_extend_path_var("PATH", os.fspath(Path(sys._base_executable).parent), True)
- # Add the Wiggly Widget example
- wiggly_dir = os.fspath(pyside_dir / 'examples' / 'widgetbinding')
- _extend_path_var('PYSIDE_DESIGNER_PLUGINS', wiggly_dir)
- taskmenu_dir = os.fspath(pyside_dir / 'examples' / 'designer' / 'taskmenuextension')
- _extend_path_var('PYSIDE_DESIGNER_PLUGINS', taskmenu_dir)
qt_tool_wrapper(ui_tool_binary("designer"), sys.argv[1:])