diff options
author | Jeffrey Sharkey <jsharkey@jsharkey.org> | 2008-12-30 00:03:27 +0000 |
---|---|---|
committer | Jeffrey Sharkey <jsharkey@jsharkey.org> | 2008-12-30 00:03:27 +0000 |
commit | e55e512c7b4fa731ebc73498c5814e4695012acc (patch) | |
tree | 5858f42ab7705f2e007110d5ea7d14b782dbcf5b /src | |
parent | c23b3f8ff166063b1fbfe1f15d3b325389329ba9 (diff) | |
download | connectbot-e55e512c7b4fa731ebc73498c5814e4695012acc.tar.gz connectbot-e55e512c7b4fa731ebc73498c5814e4695012acc.tar.bz2 connectbot-e55e512c7b4fa731ebc73498c5814e4695012acc.zip |
* Fixed bug where irssi somehow shows black-on-black text. I think it's using some other formatting flag that we don't recognize, but this corrects it for now.
This might break other apps that intentionally hide something using black-on-black?
Diffstat (limited to 'src')
-rw-r--r-- | src/org/connectbot/service/TerminalBridge.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/org/connectbot/service/TerminalBridge.java b/src/org/connectbot/service/TerminalBridge.java index 746cda3..e89c91b 100644 --- a/src/org/connectbot/service/TerminalBridge.java +++ b/src/org/connectbot/service/TerminalBridge.java @@ -1054,10 +1054,8 @@ public class TerminalBridge implements VDUDisplay, OnKeyListener, InteractiveCal } // if black-on-black, try correcting to grey - /* if(fg == Color.BLACK && bg == Color.BLACK) fg = Color.GRAY; - */ // correctly set bold and underlined attributes if requested defaultPaint.setFakeBoldText((currAttr & VDUBuffer.BOLD) != 0); |