aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/theme
diff options
context:
space:
mode:
authorGravatar un1versal2016-05-03 22:45:24 +0100
committerGravatar un1versal2016-05-03 22:45:24 +0100
commit12b0ac7fc9133391e7b20f3d748d56d0ceafe5ed (patch)
tree74f989ce3d925e26e7daf3d3517b6fe2acb87e79 /src/modules/theme
parentAliasEditorWindow: dont mess with tooltip text breaks for now (diff)
downloadKVIrc-12b0ac7fc9133391e7b20f3d748d56d0ceafe5ed.tar.gz
KVIrc-12b0ac7fc9133391e7b20f3d748d56d0ceafe5ed.tar.bz2
KVIrc-12b0ac7fc9133391e7b20f3d748d56d0ceafe5ed.zip
ThemeManagementDialog: remove broken <nobr> and adjust secondary text color
Diffstat (limited to 'src/modules/theme')
-rw-r--r--src/modules/theme/ThemeManagementDialog.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/modules/theme/ThemeManagementDialog.cpp b/src/modules/theme/ThemeManagementDialog.cpp
index 14e36ba28..6eda5f88f 100644
--- a/src/modules/theme/ThemeManagementDialog.cpp
+++ b/src/modules/theme/ThemeManagementDialog.cpp
@@ -77,7 +77,7 @@ ThemeListWidgetItem::ThemeListWidgetItem(KviTalListWidget * pBox, KviThemeInfo *
m_pThemeInfo = pInfo;
QString szText;
- szText = "<nobr><b>";
+ szText = "<b>";
szText += pInfo->name();
szText += "</b>";
@@ -90,17 +90,16 @@ ThemeListWidgetItem::ThemeListWidgetItem(KviTalListWidget * pBox, KviThemeInfo *
if(!pInfo->author().isEmpty())
{
- szText += " <font color=\"#636363\"> ";
+ szText += " <font color=\"#454545\"> ";
szText += __tr2qs_ctx("by", "theme");
szText += " ";
szText += pInfo->author();
szText += "</font>";
}
- szText += "</nobr>";
- szText += "<br><nobr><font size=\"-1\">";
+ szText += "<br><font size=\"-1\">";
szText += pInfo->description();
- szText += "</font></nobr>";
+ szText += "</font>";
setText(szText);
}