diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2017-08-24 20:30:20 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2017-08-24 20:30:20 (GMT) |
commit | 883e0363f18e8efc517531ee1b84bf8e75738f6a (patch) | |
tree | 2a5b4a8e2e02505f0b4f73aee556845e2f584408 | |
parent | 9feff0896184412d2f38eff03e2ae0fdd5e52cbc (diff) | |
download | blt-883e0363f18e8efc517531ee1b84bf8e75738f6a.zip blt-883e0363f18e8efc517531ee1b84bf8e75738f6a.tar.gz blt-883e0363f18e8efc517531ee1b84bf8e75738f6a.tar.bz2 |
fixed a proble with 3d frame backup
-rw-r--r-- | tksao/frame/fr3dcommand.C | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tksao/frame/fr3dcommand.C b/tksao/frame/fr3dcommand.C index 27afb9f..e4621da 100644 --- a/tksao/frame/fr3dcommand.C +++ b/tksao/frame/fr3dcommand.C @@ -299,7 +299,7 @@ void Frame3dBase::get3dViewCmd() void Frame3dBase::get3dViewPointCmd() { ostringstream str; - str << vp_ << viewCursor_ << ends; + str << vp_ << ' ' << viewCursor_ << ends; Tcl_AppendResult(interp, str.str().c_str(), NULL); } |