aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside-tools
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2023-04-03 10:14:34 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2023-04-03 10:54:27 +0200
commitb20b722c0b3d38dddb65c6889cabd30c4cfa72aa (patch)
tree80eb5f0345347cf80b61273152fc47cbc81543d8 /sources/pyside-tools
parentddfa0d0bccb41cdb1f4ce8c72b58cb9854b67cc1 (diff)
pyside6-designer: Remove Qt Designer examples from PYSIDE_DESIGNER_PLUGINS
Complements ffb87075e3c4ea4b0a2dd15321af8c1921e33164. Pick-to: 6.5 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>
Diffstat (limited to 'sources/pyside-tools')
-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:])