Changes between Version 12 and Version 13 of DiaVisViewPlugin


Ignore:
Timestamp:
Feb 10, 2010, 3:42:22 AM (14 years ago)
Author:
Robin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DiaVisViewPlugin

    v12 v13  
    5959'''Maintainer:''' [wiki:robert_martin] [[BR]]
    6060'''Contributors:''' arkemp
     61
     62== Bug Report ==
     63It 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.
     64Here is my solution:
     65Change the code
     66{{{
     67    if (dia_mtime > png_mtime) or (existing_width != width):
     68}}}
     69to
     70{{{
     71    if (dia_mtime > png_mtime) or (existing_width != width and width != None):
     72}}}
     73That's all.
     74