chiark / gitweb /
Make selected object brighter.
authordaid303 <daid303@gmail.com>
Fri, 22 Mar 2013 12:23:36 +0000 (13:23 +0100)
committerdaid303 <daid303@gmail.com>
Fri, 22 Mar 2013 12:23:36 +0000 (13:23 +0100)
Cura/gui/sceneView.py

index d6259589147cc514c2141cb3561c21e5c79b0299..9de7e0f34b91129874357ee5315d82d92190b24f 100644 (file)
@@ -160,7 +160,7 @@ void main(void)
                for obj in self._objectList:
                        col = self._objColors[0]
                        if self._selectedObj == obj:
-                               col = map(lambda n: n * 1.3, col)
+                               col = map(lambda n: n * 1.5, col)
                        elif self._focusObj == obj:
                                col = map(lambda n: n * 1.2, col)
                        elif self._focusObj is not None or  self._selectedObj is not None: