Changeset 11211 for code/branches/ogre1.9/src/libraries/core
- Timestamp:
- Jul 5, 2016, 11:46:10 PM (9 years ago)
- Location:
- code/branches/ogre1.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ogre1.9
- Property svn:mergeinfo changed
/code/branches/cegui0.8 (added) merged: 11110,11118,11121,11124
- Property svn:mergeinfo changed
-
code/branches/ogre1.9/src/libraries/core/GUIManager.cc
r11117 r11211 664 664 this->setBackgroundImage(""); 665 665 else 666 this->setBackgroundImage( "set: " + imageSet + " image:" + imageName);666 this->setBackgroundImage(imageSet + "/" + imageName); 667 667 } 668 668 … … 907 907 #if CEGUI_VERSION >= 0x000800 908 908 this->guiRenderer_->setDisplaySize(CEGUI::Sizef((float)newWidth, (float)newHeight)); 909 this->rootWindow_->setSize(CEGUI:: USize(CEGUI::UDim(1, (float)newWidth), CEGUI::UDim(1, (float)newHeight)));909 this->rootWindow_->setSize(CEGUI::Size<CEGUI::UDim>(CEGUI::UDim(1, (float)newWidth), CEGUI::UDim(1, (float)newHeight))); 910 910 #else 911 911 this->guiRenderer_->setDisplaySize(CEGUI::Size((float)newWidth, (float)newHeight));
Note: See TracChangeset
for help on using the changeset viewer.