Changeset 7874 in orxonox.OLD for branches/gui/src/lib/shell/shell_input.cc
- Timestamp:
- May 26, 2006, 3:54:11 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/shell/shell_input.cc
r7868 r7874 305 305 this->historyMoveUp(); 306 306 this->pressedKey = event.type; 307 this->pressedEvent = event.type; 307 308 } 308 309 else if (event.type == SDLK_DOWN) … … 310 311 this->historyMoveDown(); 311 312 this->pressedKey = event.type; 313 this->pressedEvent = event.type; 312 314 } 313 315 else if (event.type == SDLK_TAB) … … 320 322 this->delayed = this->repeatDelay; 321 323 this->pressedKey = SDLK_BACKSPACE; 324 this->pressedEvent = SDLK_BACKSPACE; 322 325 this->removeCharacters(1); 323 326 } … … 326 329 this->executeCommand(); 327 330 this->pressedKey = event.type; 331 this->pressedEvent = event.type; 328 332 } 329 333 // any other keyboard key
Note: See TracChangeset
for help on using the changeset viewer.