Changes between Version 13 and Version 14 of DiaVisViewPlugin


Ignore:
Timestamp:
Feb 10, 2010, 4:36:03 AM (14 years ago)
Author:
Robin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DiaVisViewPlugin

    v13 v14  
    6060'''Contributors:''' arkemp
    6161
    62 == Bug Report ==
    63 It seems that each time when you refresh the page, the png file would generate automatically if you haven't set the png file width on the wiki.
    64 Here is my solution:
    65 Change the code
    66 {{{
    67     if (dia_mtime > png_mtime) or (existing_width != width):
    68 }}}
    69 to
    70 {{{
    71     if (dia_mtime > png_mtime) or (existing_width != width and width != None):
    72 }}}
    73 That's all.
    74