~ubuntu-branches/ubuntu/trusty/mayavi2/trusty

« back to all changes in this revision

Viewing changes to mayavi/preferences/mayavi_preferences_page.py

  • Committer: Package Import Robot
  • Author(s): Varun Hiremath
  • Date: 2012-04-23 16:36:45 UTC
  • mfrom: (1.1.11) (2.2.6 sid)
  • Revision ID: package-import@ubuntu.com-20120423163645-wojak95rklqlbi1y
Tags: 4.1.0-1
* New upstream release
* Bump Standards-Version to 3.9.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
                   desc='the mlab backend to use')
131
131
 
132
132
    # The background color of the renderer.
133
 
    background_color = Tuple(Range(0., 1.), Range(0., 1.), Range(0., 1.),
 
133
    background_color = Tuple(Range(0., 1., 1.), 
 
134
                             Range(0., 1., 1.), 
 
135
                             Range(0., 1., 1.),
134
136
                             editor=RGBColorEditor,
135
137
                             desc='the background color of the scene')
136
138
 
137
139
    # The foreground color of the renderer.
138
 
    foreground_color = Tuple(Range(0., 1.), Range(0., 1.), Range(0., 1.),
 
140
    foreground_color = Tuple(Range(0., 1., 0.), 
 
141
                             Range(0., 1., 0.), 
 
142
                             Range(0., 1., 0.),
139
143
                             editor=RGBColorEditor,
140
144
                             desc='the foreground color of the scene')
141
145