[Konsole-devel] system notifications in multiple terminals

John Heffner jheffner at psc.edu
Sat Sep 13 04:45:43 UTC 2003


With konsole in KDE 3.1.3, the system notification (bell) in a background
(is this the right term?) terminal doesn't occur.  It seems to me like the
correctness of this is debatable, but it's really been annoying me.  I've
fixed the problem for my purposes with the patch below, but it looks like
somebody thought this was a good idea.  Maybe it should be a preference
option?  Any issues I'm not aware of?  (I'm a KDE development newbie.)

Thanks,
  -John


diff -U3 -r1.95.2.6 TEmuVt102.cpp
--- konsole/TEmuVt102.cpp       21 Jun 2003 08:52:22 -0000      1.95.2.6
+++ konsole/TEmuVt102.cpp       13 Sep 2003 04:35:26 -0000
@@ -406,8 +406,7 @@
     case TY_CTL___('D'      ) : /* EOT: ignored                      */ break;
     case TY_CTL___('E'      ) :      reportAnswerBack     (          ); break; //VT100
     case TY_CTL___('F'      ) : /* ACK: ignored                      */ break;
-    case TY_CTL___('G'      ) : if (connected)
-                                  gui->Bell  (          );
+    case TY_CTL___('G'      ) : gui->Bell  (          );
                                 emit notifySessionState(NOTIFYBELL);
                                 break; //VT100
     case TY_CTL___('H'      ) : scr->BackSpace            (          ); break; //VT100



More information about the konsole-devel mailing list