From 2fabbe31084e7a9d28b831b9a39f090e3ae86095 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 22 Apr 2019 10:10:43 +0200 Subject: Cycles: tweak preferences text when no compatible GPUs are found Try to make it more clear that this only affects Cycles, many users seem to miss the panel title. --- intern/cycles/blender/addon/properties.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'intern') diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py index d6242fc3f7c..6da88a769f5 100644 --- a/intern/cycles/blender/addon/properties.py +++ b/intern/cycles/blender/addon/properties.py @@ -1490,7 +1490,9 @@ class CyclesPreferences(bpy.types.AddonPreferences): break if not found_device: - box.label(text="No compatible GPUs found", icon='INFO') + col = box.column(align=True); + col.label(text="No compatible GPUs found for path tracing", icon='INFO') + col.label(text="Cycles will render on the CPU", icon='BLANK1') return for device in devices: -- cgit v1.2.3