diff options
Diffstat (limited to 'src/urlbar/listitem.cpp')
-rw-r--r-- | src/urlbar/listitem.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/urlbar/listitem.cpp b/src/urlbar/listitem.cpp index 91af352b..61a739f8 100644 --- a/src/urlbar/listitem.cpp +++ b/src/urlbar/listitem.cpp @@ -51,7 +51,14 @@ ListItem::ListItem(const UrlSearchItem &item, QWidget *parent) : QWidget(parent) { - //preview and icon + setAutoFillBackground(true); + + QPalette p = palette(); + p.setColor(QPalette::Base, Qt::white); // TODO: choose the correct color + p.setColor(QPalette::AlternateBase, QColor(247,247,247)); // TODO: choose the correct color + setPalette(p); + + // ---------------------------------------- QHBoxLayout *hLayout = new QHBoxLayout; |