feat(rcf): fix color table

This commit is contained in:
Swann Martinez
2019-03-13 17:20:19 +01:00
parent 11cb91fb8e
commit 8ba6ff423e

View File

@ -20,7 +20,7 @@ server = None
context = None
COLOR_TABLE = [(1, 0, 0, 1), (0, 1, 0, 1), (0, 0, 1, 1)]
COLOR_TABLE = [(1, 0, 0, 1), (0, 1, 0, 1), (0, 0, 1, 1),(0, 0.5, 1, 1),(0.5, 0, 1, 1)]
NATIVE_TYPES = (
bpy.types.IntProperty,
bpy.types.FloatProperty,
@ -522,8 +522,8 @@ class session_draw_clients(bpy.types.Operator):
global client
index = 0
for key, values in client.property_map.items():
if values.mtype == "client" and values.id != client.id:
if values.mtype == "client":
if values.id != client.id:
indices = (
(1, 3), (2, 1), (3, 0), (2, 0)