aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar un1versal2016-08-16 11:06:16 +0100
committerGravatar un1versal2016-08-16 17:31:58 +0100
commit4685acda35efbd08e7f79a41f7c275433fedc1b8 (patch)
tree2984b06ac1f778c9dc489b1695e27b9f41294fec /src
parentOptionsWidget_ircOutput: fix show own part message label (diff)
downloadKVIrc-4685acda35efbd08e7f79a41f7c275433fedc1b8.tar.gz
KVIrc-4685acda35efbd08e7f79a41f7c275433fedc1b8.tar.bz2
KVIrc-4685acda35efbd08e7f79a41f7c275433fedc1b8.zip
fix broken tooltip section bg width.
In query window if user is away the "Probably away" tooltip section bg style color only went half way the tooltip. I dislike these hacks but trying to figure out where real issue is in these is a massive pita. so there :P
Diffstat (limited to 'src')
-rw-r--r--src/kvirc/ui/KviConsoleWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kvirc/ui/KviConsoleWindow.cpp b/src/kvirc/ui/KviConsoleWindow.cpp
index fbaa5b9bb..50cbb3d82 100644
--- a/src/kvirc/ui/KviConsoleWindow.cpp
+++ b/src/kvirc/ui/KviConsoleWindow.cpp
@@ -359,7 +359,7 @@ void KviConsoleWindow::getUserTipText(const QString & nick, KviIrcUserEntry * e,
if(e->isAway())
{
- buffer += "<tr><td bgcolor=\"#E0E0E0\"><font color=\"#000000\">";
+ buffer += "<tr><td width=\"100%\" bgcolor=\"#E0E0E0\"><font color=\"#000000\">";
buffer += __tr2qs("Probably away");
buffer += "</font>" + enr;
}