Removed tertiary colouring from the recolour radial

Only the SE goggles used this and they could only have two colours
modified.
This commit is contained in:
Ziggeh
2014-07-13 17:59:49 +02:00
parent 820dc765e8
commit 71f66c0556
-3
View File
@@ -4,7 +4,6 @@ import sys
def createRadial(core, owner, target, radials):
radials.add(RadialOptions(0, 98, 0, 'Modify primary color'))
radials.add(RadialOptions(0, 99, 0, 'Modify secondary color'))
radials.add(RadialOptions(0, 100, 0, 'Modify tertiary color'))
return
def handleSelection(core, owner, target, option):
@@ -12,7 +11,5 @@ def handleSelection(core, owner, target, option):
core.suiService.sendColorPicker(owner, target, '/private/index_color_1')
if option == 99 and target:
core.suiService.sendColorPicker(owner, target, '/private/index_color_2')
if option == 100 and target:
core.suiService.sendColorPicker(owner, target, '/private/index_color_3')
return