| Summary: | Browse option in Configure Your Desktop / Default Applications - System Settings / Web Browser is buggy | ||
|---|---|---|---|
| Product: | [Applications] systemsettings | Reporter: | James Cole <james.cole> |
| Component: | kcm_componentchooser | Assignee: | Unassigned bugs <unassigned-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | adaptee, bugzilla, finex, nate, ndeb, wbauer1 |
| Priority: | NOR | Keywords: | investigated |
| Version First Reported In: | 4.9.3 | ||
| Target Milestone: | --- | ||
| Platform: | Mandriva RPMs | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
James Cole
2009-09-22 20:07:23 UTC
2. is fixed since KDE 4.3.0 *** Bug 242707 has been marked as a duplicate of this bug. *** *** Bug 275924 has been marked as a duplicate of this bug. *** Obviously it is not fixed, the problem still exists in 4.6.x The first problem is due to code like this :
void CfgBrowser::selectBrowser()
{
KUrl::List urlList;
KOpenWithDialog dlg(urlList, i18n("Select preferred Web browser application:"), QString(), this);
if (dlg.exec() != QDialog::Accepted)
return;
m_browserService = dlg.service();
if (m_browserService) {
m_browserExec = m_browserService->desktopEntryName();
...
However, the .desktop corresponding to konqueror is installed as konqbrowser.desktop. That is why "konqbrowser" is filled .
All problems here are fixed for me in Plasma 5.14. The Konqueror name issue is a packaging matter that should be taken up with distro maintainers and packagers. (In reply to Nate Graham from comment #6) > The Konqueror name issue > is a packaging matter that should be taken up with distro maintainers and > packagers. Not really. Konqueror upstream does actually (still) ship "konqbrowser.desktop"... See https://cgit.kde.org/konqueror.git/tree/konqbrowser.desktop Ok, please submit a bug against Konqueror then. :) |