Ignore:
Timestamp:
Feb 22, 2012 9:50:53 AM (12 years ago)
Author:
Jae Cho <jhjcho@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
2d52cf0
Parents:
8247523
Message:

no time delay for 3d plot

File:
1 edited

Legend:

Unmodified
Added
Removed
  • plottools/src/danse/common/plottools/PlotPanel.py

    r9ea4577e rebbc421  
    15181518                    ax.cla() 
    15191519                cbax = None 
    1520  
     1520            self.subplot.figure.canvas.resizing = False 
    15211521            im = ax.plot_surface(X, Y, output, rstride=1, cstride=1, cmap=cmap, 
    15221522                                   linewidth=0, antialiased=False) 
     
    15321532        cb.update_bruteforce(im) 
    15331533        cb.set_label('$' + self.scale + '$') 
    1534         self.figure.canvas.draw_idle() 
     1534        if self.dimension != 3: 
     1535            self.figure.canvas.draw_idle() 
     1536        else: 
     1537            self.figure.canvas.draw() 
    15351538     
    15361539    def _build_matrix(self): 
Note: See TracChangeset for help on using the changeset viewer.