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:
authorHans Goudey <h.goudey@me.com>2020-07-15 16:11:01 +0300
committerHans Goudey <h.goudey@me.com>2020-07-15 16:11:01 +0300
commitb3c34011c0ff08c4ce0a75798546ffbb6ef1cfd6 (patch)
tree67815a93cd92260962969c1eb03e4811660146bd /release
parentefc6f6e1ae714f7471ebefbfaa21699214111d81 (diff)
Cleanup: Replace 0 with False for boolean argument
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_bone.py2
-rw-r--r--release/scripts/startup/bl_ui/space_filebrowser.py24
2 files changed, 13 insertions, 13 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_bone.py b/release/scripts/startup/bl_ui/properties_data_bone.py
index ff4425fbb73..170d7910339 100644
--- a/release/scripts/startup/bl_ui/properties_data_bone.py
+++ b/release/scripts/startup/bl_ui/properties_data_bone.py
@@ -267,7 +267,7 @@ class BONE_PT_display(BoneButtonsPanel, Panel):
if bone:
col = layout.column()
- col.prop(bone, "hide", text="Hide", toggle=0)
+ col.prop(bone, "hide", text="Hide", toggle=False)
class BONE_PT_display_custom_shape(BoneButtonsPanel, Panel):
diff --git a/release/scripts/startup/bl_ui/space_filebrowser.py b/release/scripts/startup/bl_ui/space_filebrowser.py
index 9a39d840149..f37edd05fd2 100644
--- a/release/scripts/startup/bl_ui/space_filebrowser.py
+++ b/release/scripts/startup/bl_ui/space_filebrowser.py
@@ -98,7 +98,7 @@ class FILEBROWSER_PT_filter(Panel):
is_lib_browser = params.use_library_browsing
row = layout.row(align=True)
- row.prop(params, "use_filter", text="", toggle=0)
+ row.prop(params, "use_filter", text="", toggle=False)
row.label(text="Filter")
col = layout.column()
@@ -106,7 +106,7 @@ class FILEBROWSER_PT_filter(Panel):
row = col.row()
row.label(icon='FILE_FOLDER')
- row.prop(params, "use_filter_folder", text="Folders", toggle=0)
+ row.prop(params, "use_filter_folder", text="Folders", toggle=False)
if params.filter_glob:
col.label(text=params.filter_glob)
@@ -114,33 +114,33 @@ class FILEBROWSER_PT_filter(Panel):
row = col.row()
row.label(icon='FILE_BLEND')
row.prop(params, "use_filter_blender",
- text=".blend Files", toggle=0)
+ text=".blend Files", toggle=False)
row = col.row()
row.label(icon='FILE_BACKUP')
row.prop(params, "use_filter_backup",
- text="Backup .blend Files", toggle=0)
+ text="Backup .blend Files", toggle=False)
row = col.row()
row.label(icon='FILE_IMAGE')
- row.prop(params, "use_filter_image", text="Image Files", toggle=0)
+ row.prop(params, "use_filter_image", text="Image Files", toggle=False)
row = col.row()
row.label(icon='FILE_MOVIE')
- row.prop(params, "use_filter_movie", text="Movie Files", toggle=0)
+ row.prop(params, "use_filter_movie", text="Movie Files", toggle=False)
row = col.row()
row.label(icon='FILE_SCRIPT')
row.prop(params, "use_filter_script",
- text="Script Files", toggle=0)
+ text="Script Files", toggle=False)
row = col.row()
row.label(icon='FILE_FONT')
- row.prop(params, "use_filter_font", text="Font Files", toggle=0)
+ row.prop(params, "use_filter_font", text="Font Files", toggle=False)
row = col.row()
row.label(icon='FILE_SOUND')
- row.prop(params, "use_filter_sound", text="Sound Files", toggle=0)
+ row.prop(params, "use_filter_sound", text="Sound Files", toggle=False)
row = col.row()
row.label(icon='FILE_TEXT')
- row.prop(params, "use_filter_text", text="Text Files", toggle=0)
+ row.prop(params, "use_filter_text", text="Text Files", toggle=False)
row = col.row()
row.label(icon='FILE_VOLUME')
- row.prop(params, "use_filter_volume", text="Volume Files", toggle=0)
+ row.prop(params, "use_filter_volume", text="Volume Files", toggle=False)
col.separator()
@@ -148,7 +148,7 @@ class FILEBROWSER_PT_filter(Panel):
row = col.row()
row.label(icon='BLANK1') # Indentation
row.prop(params, "use_filter_blendid",
- text="Blender IDs", toggle=0)
+ text="Blender IDs", toggle=False)
if params.use_filter_blendid:
row = col.row()
row.label(icon='BLANK1') # Indentation