summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-11-19 07:00:22 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2012-11-19 07:00:22 -0600
commit236976596f03d06fbc9521de4ccf1fb5bdcdfa0b (patch)
tree054044e1ec2012fa2f7f688416c899dc253cc6e3
parentcd3ecd88c60f91ea4b7034d24ec5b3dbcda25eb8 (diff)
downloadtdepim-236976596f03d06fbc9521de4ccf1fb5bdcdfa0b.tar.gz
tdepim-236976596f03d06fbc9521de4ccf1fb5bdcdfa0b.zip
Fix kmail informational text box about sender's time.
This partially resolves bug report 1328.
-rw-r--r--kmail/headerstyle.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kmail/headerstyle.cpp b/kmail/headerstyle.cpp
index 28736569..019c20b2 100644
--- a/kmail/headerstyle.cpp
+++ b/kmail/headerstyle.cpp
@@ -668,7 +668,7 @@ namespace KMail {
}
else if ( currTime > TQTime( 6, 0, 0 ) && currTime <= TQTime( 12, 0, 0 ) ) {
timeofday = i18n( "Morning" );
- color = "white";
+ color = "black";
bg_color = "#00A6FF";
bg_image = "url(data:image/png;base64,"
"iVBORw0KGgoAAAANSUhEUgAAAAEAAAAyCAYAAACd+7GKAAAAWklEQVQI122OQQ7DMAzDaP3/dfuO"
@@ -714,7 +714,7 @@ namespace KMail {
"text-align:center;"
"font-size:12px;"
"padding:2px;"
- "width:50px;"
+ "width:140px;"
"height:50px;"
"margin: 0px 0px 3px 0px;"
"\" class=\"curtime\">%4<br />%5<br />%6</div>"
@@ -722,7 +722,7 @@ namespace KMail {
.arg( bg_color )
.arg( color )
.arg( bg_image )
- .arg( i18n( "Now:" ) )
+ .arg( i18n( "Sender's Current Time:" ) )
.arg( currTime.toString( tformat ) )
.arg( timeofday )
);