Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1327


Ignore:
Timestamp:
May 19, 2008, 9:00:17 PM (16 years ago)
Author:
landauf
Message:

sync with notebook

Location:
code/branches/console/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/console/src/core/ConfigValueContainer.cc

    r1325 r1327  
    289289                else
    290290                {
    291                     this->value_.fromString(ConfigFileManager::getSingleton()->getValue(this->type_, this->sectionname_, this->varname_, i, "abc", this->value_.isA(MT_string)));
     291                    this->value_.fromString(ConfigFileManager::getSingleton()->getValue(this->type_, this->sectionname_, this->varname_, i, MultiTypeMath(), this->value_.isA(MT_string)));
    292292                }
    293293
  • code/branches/console/src/core/Shell.cc

    r1326 r1327  
    204204
    205205                this->finishedLastLine_ = newline;
    206                 SHELL_UPDATE_LISTENERS(lineAdded);
     206
     207                if (!this->scrollPosition_)
     208                {
     209                    SHELL_UPDATE_LISTENERS(lineAdded);
     210                }
    207211            }
    208212            else
  • code/branches/console/src/orxonox/console/InGameConsole.cc

    r1322 r1327  
    140140    {
    141141        this->linesChanged();
     142        for (unsigned int i = LINES - 1; i > 1; --i)
     143            this->consoleOverlayTextAreas_[i]->setCaption(this->consoleOverlayTextAreas_[i - 1]->getCaption());
     144
     145        this->onlyLastLineChanged();
    142146    }
    143147
Note: See TracChangeset for help on using the changeset viewer.