mirror of
https://github.com/moparisthebest/Yaaic
synced 2025-02-16 23:10:11 -05:00
highlight message (red) if current nickname is used
This commit is contained in:
parent
b94f7cc789
commit
9b6f97844a
@ -161,6 +161,11 @@ public class IRCConnection extends PircBot
|
|||||||
Message message = new Message(sender + " " + action);
|
Message message = new Message(sender + " " + action);
|
||||||
message.setIcon(R.drawable.action);
|
message.setIcon(R.drawable.action);
|
||||||
|
|
||||||
|
if (action.contains(getNick())) {
|
||||||
|
// highlight
|
||||||
|
message.setColor(Message.COLOR_RED);
|
||||||
|
}
|
||||||
|
|
||||||
if (target.equals(this.getNick())) {
|
if (target.equals(this.getNick())) {
|
||||||
// We are the target - this is an action in a query
|
// We are the target - this is an action in a query
|
||||||
Conversation conversation = server.getConversation(sender);
|
Conversation conversation = server.getConversation(sender);
|
||||||
@ -336,6 +341,12 @@ public class IRCConnection extends PircBot
|
|||||||
text = Colors.removeFormattingAndColors(text);
|
text = Colors.removeFormattingAndColors(text);
|
||||||
|
|
||||||
Message message = new Message("<" + sender + "> " + text);
|
Message message = new Message("<" + sender + "> " + text);
|
||||||
|
|
||||||
|
if (text.contains(getNick())) {
|
||||||
|
// highlight
|
||||||
|
message.setColor(Message.COLOR_RED);
|
||||||
|
}
|
||||||
|
|
||||||
server.getConversation(target).addMessage(message);
|
server.getConversation(target).addMessage(message);
|
||||||
|
|
||||||
Intent intent = new Intent(Broadcast.CONVERSATION_MESSAGE);
|
Intent intent = new Intent(Broadcast.CONVERSATION_MESSAGE);
|
||||||
@ -472,6 +483,10 @@ public class IRCConnection extends PircBot
|
|||||||
text = Colors.removeFormattingAndColors(text);
|
text = Colors.removeFormattingAndColors(text);
|
||||||
|
|
||||||
Message message = new Message("<" + sender + "> " + text);
|
Message message = new Message("<" + sender + "> " + text);
|
||||||
|
|
||||||
|
if (text.contains(getNick())) {
|
||||||
|
message.setColor(Message.COLOR_RED);
|
||||||
|
}
|
||||||
|
|
||||||
Conversation conversation = server.getConversation(sender);
|
Conversation conversation = server.getConversation(sender);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user