diff --git a/src/dialogs/filetypeconfigwidget.ui b/src/dialogs/filetypeconfigwidget.ui --- a/src/dialogs/filetypeconfigwidget.ui +++ b/src/dialogs/filetypeconfigwidget.ui @@ -206,6 +206,9 @@ Sets priority for this file type. If more than one file type selects the same file, the one with the highest priority will be used. + + -99 + diff --git a/src/mode/katemodeconfigpage.cpp b/src/mode/katemodeconfigpage.cpp --- a/src/mode/katemodeconfigpage.cpp +++ b/src/mode/katemodeconfigpage.cpp @@ -41,6 +41,7 @@ #include #include #include +#include //END Includes ModeConfigPage::ModeConfigPage(QWidget *parent) @@ -87,6 +88,9 @@ connect(ui->cmbHl, SIGNAL(activated(int)), this, SLOT(slotChanged())); connect(ui->cmbIndenter, SIGNAL(activated(int)), this, SLOT(slotChanged())); + // make the context help a bit easier to access + ui->sbPriority->setToolTip(ui->sbPriority->whatsThis()); + layout->addWidget(newWidget); setLayout(layout); }