X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fnickview.cpp;h=6d3f39818aa88e2b10194dd696384d388c1181c0;hp=e3654741d21da877053c2ee179a8ae25d4527461;hb=df38e82953be7b676871f7215053a005decb90d1;hpb=f4c3a241df84e2a2de9ddebdc4c7f25054b4ba9c diff --git a/src/uisupport/nickview.cpp b/src/uisupport/nickview.cpp index e3654741..6d3f3981 100644 --- a/src/uisupport/nickview.cpp +++ b/src/uisupport/nickview.cpp @@ -34,7 +34,6 @@ #include "nickviewfilter.h" #include "networkmodel.h" #include "types.h" -#include "uisettings.h" class ExpandAllEvent : public QEvent { public: @@ -62,10 +61,6 @@ NickView::NickView(QWidget *parent) // afaik this is better on Mac and Windows connect(this, SIGNAL(activated(QModelIndex)), SLOT(startQuery(QModelIndex))); #endif - - UiStyleSettings s("QtUiStyle/Fonts"); // li'l dirty here, but fonts are stored in QtUiStyle :/ - s.notify("BufferView", this, SLOT(setCustomFont(QVariant))); // yes, we share the BufferView settings - setCustomFont(s.value("BufferView", QFont())); } void NickView::init() { @@ -87,13 +82,6 @@ void NickView::setModel(QAbstractItemModel *model_) { init(); } -void NickView::setCustomFont(const QVariant &v) { - QFont font = v.value(); - if(font.family().isEmpty()) - font = QApplication::font(); - setFont(font); -} - void NickView::rowsInserted(const QModelIndex &parent, int start, int end) { QTreeView::rowsInserted(parent, start, end); if(model()->data(parent, NetworkModel::ItemTypeRole) == NetworkModel::UserCategoryItemType && !isExpanded(parent)) {