Blob Blame History Raw
--- kdeutils-3.5.4/kedit/kedit.cpp.orig	2006-09-12 12:54:45.000000000 +0200
+++ kdeutils-3.5.4/kedit/kedit.cpp	2006-09-12 15:21:50.000000000 +0200
@@ -902,7 +902,6 @@
 
     QFont printFont = eframe->font();
     QFont headerFont(printFont);
-    headerFont.setBold(true);
 
     QFontMetrics printFontMetrics(printFont);
     QFontMetrics headerFontMetrics(headerFont);
@@ -922,7 +921,6 @@
 
         int dy = 0;
 
-	p->setFont(headerFont);
         int w = printFontMetrics.width("M");
         p->setTabStops(8*w);
 
@@ -1325,6 +1323,7 @@
   QWidget *font = new QWidget(0, "FontSetting");
   QVBoxLayout *topLayout = new QVBoxLayout(font, 0, KDialog::spacingHint());
   KFontChooser *mFontChooser = new KFontChooser(font, "kcfg_Font", false, QStringList(), false, 6);
+  mFontChooser->enableColumn(KFontChooser::StyleList, false);
   topLayout->addWidget(mFontChooser);
   addPage(font, i18n("Font"), "fonts", i18n("Editor Font"));