Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-02-26 06:48:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-26 06:48:41 +0400
commitd2548f561cd6499f22e4710fdddeab606b726af5 (patch)
tree52149a9f56b017b103219ce489f24591837838f9 /release
parentece755ffe6a228db40d1cd4073df29b6c0f03519 (diff)
WM: hide screen management and ndof operators from seach popup
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/wm.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py
index 5dadf77ce92..3fdde1a1339 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -757,6 +757,7 @@ class WM_OT_url_open(Operator):
"Open a website in the web-browser"
bl_idname = "wm.url_open"
bl_label = ""
+ bl_options = {'INTERNAL'}
url = StringProperty(
name="URL",
@@ -773,6 +774,7 @@ class WM_OT_path_open(Operator):
"Open a path in a file browser"
bl_idname = "wm.path_open"
bl_label = ""
+ bl_options = {'INTERNAL'}
filepath = StringProperty(
subtype='FILE_PATH',
@@ -2019,6 +2021,7 @@ class WM_OT_addon_expand(Operator):
"Display more information on this addon"
bl_idname = "wm.addon_expand"
bl_label = ""
+ bl_options = {'INTERNAL'}
module = StringProperty(
name="Module",