--- a/Network/IRC/IrcChannelWidget.py Sun Dec 09 12:19:58 2012 +0100 +++ b/Network/IRC/IrcChannelWidget.py Sun Dec 09 13:01:15 2012 +0100 @@ -340,7 +340,7 @@ @param name user name for the channel (string) """ - self.__userName = name.lower() + self.__userName = name def partMessage(self): """ @@ -403,7 +403,8 @@ if Preferences.getIrc("NotifyMessage"): self.__ui.showNotification(UI.PixmapCache.getPixmap("irc48.png"), self.trUtf8("Channel Message"), msg) - elif Preferences.getIrc("NotifyNick") and self.__userName in msg: + elif Preferences.getIrc("NotifyNick") and \ + self.__userName.lower() in msg.lower(): self.__ui.showNotification(UI.PixmapCache.getPixmap("irc48.png"), self.trUtf8("Nick mentioned"), msg) return True