parent
7b79542c6a
commit
2b6640dc0d
|
@ -243,6 +243,8 @@ class GPEXP_OT_reset_render_settings(bpy.types.Operator):
|
||||||
break
|
break
|
||||||
|
|
||||||
fn.scene_aa(scene=scn, toggle=use_native_aa)
|
fn.scene_aa(scene=scn, toggle=use_native_aa)
|
||||||
|
# set propertie on scn to reflect changes (without triggering update)
|
||||||
|
scn['use_aa'] = use_native_aa
|
||||||
|
|
||||||
return {"FINISHED"}
|
return {"FINISHED"}
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ from . import ui
|
||||||
from .fn import scene_aa
|
from .fn import scene_aa
|
||||||
|
|
||||||
def update_scene_aa(context, scene):
|
def update_scene_aa(context, scene):
|
||||||
scene_aa(toggle=bpy.context.scene.use_aa)
|
scene_aa(toggle=bpy.context.scene.use_aa)
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue