From 976f5bf523e36ca3545c682f3da2c6188ed2081f Mon Sep 17 00:00:00 2001 From: Cary Sandvig Date: Sat, 24 Feb 2001 01:21:51 +0000 Subject: [PATCH] extended write() to output the model width/height members --- panda/src/gui/guiLabel.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/panda/src/gui/guiLabel.cxx b/panda/src/gui/guiLabel.cxx index 1b832a86d2..58a28da85e 100644 --- a/panda/src/gui/guiLabel.cxx +++ b/panda/src/gui/guiLabel.cxx @@ -501,6 +501,8 @@ void GuiLabel::write(ostream& os) const { os << " _tex = 0x" << (void*)(this->_tex.p()) << endl; os << " _internal = 0x" << (void*)(this->_internal) << endl; os << " _gset = 0x" << (void*)(this->_gset) << endl; + os << " _model_width = " << this->_model_width << endl; + os << " _model_height = " << this->model_height << endl; os << " _scale = " << this->_scale << endl; os << " _pos = " << this->_pos << endl; os << " _foreground = " << this->_foreground << endl;