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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurice Raybaud <mauriceraybaud@hotmail.fr>2020-03-26 22:52:56 +0300
committerMaurice Raybaud <mauriceraybaud@hotmail.fr>2020-03-26 22:52:56 +0300
commitf05763b347926198316aae24938914c1de7560a7 (patch)
tree3c05ef3c2feb7ebde77cb465195ade4ba9c54de8 /render_povray/__init__.py
parentd7f05adabbe94c976ff6a63a6f7a080d82218220 (diff)
render_povray
* removed charset : The `charset` global setting has been deprecated in pov 3.8. Input files conforming to ASCII, UTF-8, Latin-1 or Windows-1252 encoding will instead be auto-detected, while other encodings are currently unsupported.
Diffstat (limited to 'render_povray/__init__.py')
-rw-r--r--render_povray/__init__.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/render_povray/__init__.py b/render_povray/__init__.py
index 5080aab9..7a6332ee 100644
--- a/render_povray/__init__.py
+++ b/render_povray/__init__.py
@@ -579,17 +579,17 @@ class RenderPovSettingsScene(PropertyGroup):
options={'ANIMATABLE'},
subtype='COLOR'
)
-
- charset: EnumProperty(
- name="Charset",
- description="This allows you to specify the assumed character set of all text strings",
- items=(
- ("ascii", "ASCII", ""),
- ("utf8", "UTF-8", ""),
- ("sys", "SYS", "")
- ),
- default="utf8",
- )
+ # Deprecated (autodetected in pov3.8):
+ # charset: EnumProperty(
+ # name="Charset",
+ # description="This allows you to specify the assumed character set of all text strings",
+ # items=(
+ # ("ascii", "ASCII", ""),
+ # ("utf8", "UTF-8", ""),
+ # ("sys", "SYS", "")
+ # ),
+ # default="utf8",
+ # )
max_intersections_enable: BoolProperty(
name="Enable",