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:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_userpref.py')
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index 0d1cbc424d7..1711519bce1 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -1455,13 +1455,11 @@ class USERPREF_PT_saveload_file_browser(SaveLoadPanel, CenterAlignMixIn, Panel):
prefs = context.preferences
paths = prefs.filepaths
- col = layout.column()
+ col = layout.column(heading="Defaults")
col.prop(paths, "use_filter_files")
-
- col = layout.column(heading="Hide")
- col.prop(paths, "show_hidden_files_datablocks", text="Dot File & Data-Blocks")
- col.prop(paths, "hide_recent_locations", text="Recent Locations")
- col.prop(paths, "hide_system_bookmarks", text="System Bookmarks")
+ col.prop(paths, "show_hidden_files_datablocks")
+ col.prop(paths, "show_recent_locations")
+ col.prop(paths, "show_system_bookmarks")
# -----------------------------------------------------------------------------