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:
authorNathan Letwory <nathan@letworyinteractive.com>2010-08-26 11:19:24 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-08-26 11:19:24 +0400
commitfb7221ce217a3b7ef8852fea73d3e3dfaef06ee0 (patch)
tree0df4cc0b758fb19d2002b5cadfc488ae179ba7c9 /release
parent92422ba4525dedfc1687dfff14e11ee805a30c23 (diff)
Patch [#23390] Addition of Author field to user preferences
Contributed by Imran Syed (freakabcd) Adds a field where the user can put in name/nickname that exporters then can use to write authoring information, where possible.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_userpref.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py
index cf0ef4939ef..1c878d1cdbf 100644
--- a/release/scripts/ui/space_userpref.py
+++ b/release/scripts/ui/space_userpref.py
@@ -369,6 +369,7 @@ class USERPREF_PT_system(bpy.types.Panel):
col.prop(system, "dpi")
col.prop(system, "frame_server_port")
col.prop(system, "scrollback", text="Console Scrollback")
+ col.prop(system, "author", text="Author")
col.prop(system, "use_scripts_auto_execute")
col.prop(system, "use_tabs_as_spaces")
@@ -1217,4 +1218,4 @@ def unregister():
pass
if __name__ == "__main__":
- register()
+ register() \ No newline at end of file