https://bugs.kde.org/show_bug.cgi?id=424471

--- Comment #3 from Fernando Mattioli <mattioli.ferna...@gmail.com> ---
In kateconfigdialog.cpp, both top level items ("Application" and "Editor
Component") are disabled:

KPageWidgetItem *applicationItem = addPage(new QWidget, i18n("Application"));
applicationItem->setIcon(QIcon::fromTheme(QStringLiteral("preferences-other")));
applicationItem->setHeader(i18n("Application Options"));
applicationItem->setCheckable(false);
applicationItem->setEnabled(false);
m_applicationPage = applicationItem;`


and

// editor widgets from kwrite/kwdialog
m_editorPage = addPage(new QWidget, i18n("Editor Component"));
m_editorPage->setIcon(QIcon::fromTheme(QStringLiteral("accessories-text-editor")));
m_editorPage->setHeader(i18n("Editor Component Options"));
m_editorPage->setCheckable(false);
m_editorPage->setEnabled(false);

By enabling them, they're presented with the same color group as their
children, but now their clickable, with no content currently available (see
attached screenshot for example).

What do you think: should a default content be added to this top level entries
or should we work in distinguishing enabled and clickable behavior (maybe there
is already something similar in the frameworks)?

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to