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.
This commit is contained in:
Brecht Van Lommel 2019-04-22 10:10:43 +02:00
parent d966c2f0c2
commit 2fabbe3108
1 changed files with 3 additions and 1 deletions

View File

@ -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: