Ticket Change Details
Not logged in
Overview

Artifact ID: 466068f7726b3130455bcea5df5d11644e6f3985
Ticket: 040cbad431f9524d0f1bb17ec97732922daa01b5
BLT zoomInfo stack not accessible, under undroidwish/vanillawish
User & Date: anonymous 2020-02-11 21:41:47
Changes

  1. foundin changed to: ""Eppur si muove""
  2. icomment:
    The following code inserts a user zoom level into the zoomInfo stack of BLT:
    <pre>
    proc AddZoomStack { } {
      global g zoomInfo
      set cmd {}
      foreach margin { xaxis yaxis x2axis y2axis } {
        foreach axis [$g $margin use] {
          set min [$g axis cget $axis -min]; set max [$g axis cget $axis -max]
          set c [list $g axis configure $axis -min $min -max $max]
          append cmd "$c\n"
          }
        }
      set zoomInfo($g,stack) [linsert $zoomInfo($g,stack) 0 $cmd]
      }
    
    </pre>
    
    This works under BLT 2.4z on Linux and Windows, fails with
    <pre> 
       can't read "zoomInfo(.r.gr.c,stack)": no such variable
    </pre>
    under undroidwish-e5dc71ed9d-linux64 or vanillawish-e5dc71ed9d-linux64
    
  3. login: "anonymous"
  4. mimetype: "text/html"
  5. private_contact changed to: "d813dd715ab672b725c769b4298abd09564f71e0"
  6. severity changed to: "Important"
  7. status changed to: "Open"
  8. title changed to:
    BLT zoomInfo stack not accessible, under undroidwish/vanillawish
    
  9. type changed to: "Code_Defect"