Changeset 18 for psi/trunk/src/tabdlg.cpp
- Timestamp:
- 09/05/06 01:26:01 (2 years ago)
- Files:
-
- 1 modified
-
psi/trunk/src/tabdlg.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
psi/trunk/src/tabdlg.cpp
r2 r18 408 408 closeChat(); 409 409 } 410 else if ( e->key() == Key_PageUp && (e->state() & ControlButton) ) 410 else if ( e->key() == Key_PageUp && (e->state() & ControlButton) || 411 e->key() == Key_Backtab && (e->state() & ControlButton) ) 411 412 { 412 413 previousTab(); 413 414 } 414 else if ( e->key() == Key_PageDown && (e->state() & ControlButton) ) 415 else if ( e->key() == Key_PageDown && (e->state() & ControlButton) || 416 e->key() == Key_Tab && (e->state() & ControlButton) ) 415 417 { 416 418 nextTab();
