Forgot font changes.

This commit is contained in:
Nathan Isom 2015-10-16 12:02:57 -05:00
parent b18549bbed
commit 6391da4f6f
3 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ class DownloadView(QListView):
STYLESHEET = """
QListView {
background-color: {{ color['downloads.bg.bar'] }};
{{ font['downloads'] }}
font: {{ font['downloads'] }};
}
QListView::item {

View File

@ -55,7 +55,7 @@ class CompletionView(QTreeView):
# don't define that in this stylesheet.
STYLESHEET = """
QTreeView {
{{ font['completion'] }}
font: {{ font['completion'] }};
background-color: {{ color['completion.bg'] }};
alternate-background-color: {{ color['completion.alternate-bg'] }};
outline: 0;

View File

@ -110,7 +110,7 @@ class StatusBar(QWidget):
QWidget#StatusBar,
QWidget#StatusBar QLabel,
QWidget#StatusBar QLineEdit {
{{ font['statusbar'] }}
font: {{ font['statusbar'] }};
background-color: {{ color['statusbar.bg'] }};
color: {{ color['statusbar.fg'] }};
}