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>2018-06-29 00:57:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-29 00:57:00 +0300
commit4d39da1060105210a665e083b8d035f18b989a9f (patch)
treea70a598caf927a7c1131fb88d504a61b20f02335 /source/blender/makesrna
parent4d1c5f1ec51e7978c76271730d479e0aef15c63a (diff)
parent46dceefc353ab8c84731c9f8f09a34733e004d1b (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 5e96c8b7ef4..347283cd529 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -4391,17 +4391,6 @@ static void rna_def_userdef_system(BlenderRNA *brna)
RNA_def_property_ui_text(prop, "Audio Channels", "Audio channel count");
RNA_def_property_update(prop, 0, "rna_UserDef_audio_update");
- prop = RNA_def_property(srna, "screencast_fps", PROP_INT, PROP_NONE);
- RNA_def_property_int_sdna(prop, NULL, "scrcastfps");
- RNA_def_property_range(prop, 10, 100);
- RNA_def_property_ui_text(prop, "FPS", "Frame rate for the screencast to be played back");
-
- prop = RNA_def_property(srna, "screencast_wait_time", PROP_INT, PROP_NONE);
- RNA_def_property_int_sdna(prop, NULL, "scrcastwait");
- RNA_def_property_range(prop, 10, 1000);
- RNA_def_property_ui_text(prop, "Wait Timer (ms)",
- "Time in milliseconds between each frame recorded for screencast");
-
prop = RNA_def_property(srna, "use_text_antialiasing", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_negative_sdna(prop, NULL, "text_render", USER_TEXT_DISABLE_AA);
RNA_def_property_ui_text(prop, "Text Anti-aliasing", "Draw user interface text anti-aliased");