By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1026
Collapse All | Expand All

(-)a/konsole/konsole/TEmuVt102.cpp (-3 / +3 lines)
Lines 945-951 void TEmuVt102::onKeyPress( TQKeyEvent* ev ) Link Here
945
                                     encodeMode(MODE_AppScreen		, BITS_AppScreen ) + // VT100 stuff
945
                                     encodeMode(MODE_AppScreen		, BITS_AppScreen ) + // VT100 stuff
946
                                     encodeStat(TQt::ControlButton	, BITS_Control   ) +
946
                                     encodeStat(TQt::ControlButton	, BITS_Control   ) +
947
                                     encodeStat(TQt::ShiftButton	, BITS_Shift     ) +
947
                                     encodeStat(TQt::ShiftButton	, BITS_Shift     ) +
948
                                     encodeStat(TQt::AltButton		, BITS_Alt       ),
948
                                     encodeStat(TQt::AltButton		, BITS_Alt       ) +
949
                                     encodeStat(TQt::MetaButton		, BITS_Alt	 ),
949
                          &cmd, &txt, &len, &metaspecified ))
950
                          &cmd, &txt, &len, &metaspecified ))
950
//printf("cmd: %d, %s, %d\n",cmd,txt,len);
951
//printf("cmd: %d, %s, %d\n",cmd,txt,len);
951
  if (connected)
952
  if (connected)
Lines 977-983 void TEmuVt102::onKeyPress( TQKeyEvent* ev ) Link Here
977
    scr->setHistCursor(scr->getHistLines());
978
    scr->setHistCursor(scr->getHistLines());
978
979
979
  if (cmd==CMD_send) {
980
  if (cmd==CMD_send) {
980
    if ((ev->state() & TQt::AltButton) && !metaspecified ) sendString("\033");
981
    if (((ev->state() & TQt::AltButton) || (ev->state() & TQt::MetaButton)) && !metaspecified ) sendString("\033");
981
    emit sndBlock(txt,len);
982
    emit sndBlock(txt,len);
982
    return;
983
    return;
983
  }
984
  }
984
- 

Return to bug 1026