~ubuntu-branches/ubuntu/lucid/blender/lucid

« back to all changes in this revision

Viewing changes to source/tools/MakeCursor.py

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2009-08-06 22:32:19 UTC
  • mfrom: (1.2.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090806223219-8z4eej1u8levu4pz
Tags: 2.49a+dfsg-0ubuntu1
* Merge from debian unstable, remaining changes:
  - debian/control: Build-depend on python-2.6 rather than python-2.5.
  - debian/misc/*.desktop: Add Spanish translation to .desktop 
    files.
  - debian/pyversions: 2.6.
  - debian/rules: Clean *.o of source/blender/python/api2_2x/
* New upstream release (LP: #382153).
* Refreshed patches:
  - 01_sanitize_sys.patch
  - 02_tmp_in_HOME
  - 10_use_systemwide_ftgl
  - 70_portability_platform_detection
* Removed patches merged upstream:
  - 30_fix_python_syntax_warning
  - 90_ubuntu_ffmpeg_52_changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
                self.clear=Button(frame2,text="Clear",command=self.clearit)
40
40
                self.clear.grid(row=0, column=0, pady=20)
41
41
                
42
 
                self.doit=Button(frame2, text="Do It", command=self.doit)
 
42
                self.doit=Button(frame2, text="Print", command=self.doit)
43
43
                self.doit.grid(row=0, column=1, pady=20)
44
44
                
45
45
                #self.doitlab=Label(frame2, text="(Output to stdout)");
46
46
                #self.doitlab.grid(row=1, column=1);
47
47
                
48
 
                self.parse=Button(frame2, text="Parse it", command=self.parsetext);
 
48
                self.parse=Button(frame2, text="Parse", command=self.parsetext);
49
49
                self.parse.grid(row=0, column=2, pady=20)
50
50
                
51
51
                self.large=0