diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2018-02-13 20:22:24 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2018-02-13 20:22:24 (GMT) |
commit | 25b0e0ee78b5a5d8a2088b40299bd7da6706fc05 (patch) | |
tree | 8e49728c6054a4cb3a190d8bed05f8be604fe631 /tksao/frame/base.C | |
parent | 86fd01170d0377086671cfab94cdd6b363e1ef3d (diff) | |
download | blt-25b0e0ee78b5a5d8a2088b40299bd7da6706fc05.zip blt-25b0e0ee78b5a5d8a2088b40299bd7da6706fc05.tar.gz blt-25b0e0ee78b5a5d8a2088b40299bd7da6706fc05.tar.bz2 |
fix panner update problem
Diffstat (limited to 'tksao/frame/base.C')
-rw-r--r-- | tksao/frame/base.C | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tksao/frame/base.C b/tksao/frame/base.C index 1885f8e..5f780a3 100644 --- a/tksao/frame/base.C +++ b/tksao/frame/base.C @@ -1933,10 +1933,15 @@ int Base::updatePixmap(const BBox& bb) updateMatrices(); updatePannerMatrices(); case BASE: + updateBase(); updatePanner(); + case PIXMAP: + updatePM(bb); + break; + case BASEONLY: + // specal 3D updateBase(); - case PIXMAP: updatePM(bb); break; } |