Summary: | Be free entry in Klauncher | ||
---|---|---|---|
Product: | [Plasma] krunner | Reporter: | Unknown <null> |
Component: | general | Assignee: | Plasma Bugs List <plasma-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | aseigo, mat69 |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Unknown
2010-01-26 23:28:59 UTC
what "Be free" entry is this? is it a web browser bookmark perhaps? can you check the bookmarks in konqueror to see if it exists there? Yes, you are right, it is a bookmark in Konqueror with address: "about:konqueror". Hmmm, the fix seems is really simply now :) I don't know whether the SUSE team put this among the others or by default KDE contains it, but it acts strange when not Konqueror is the default browser. Ok the problem is that the bookmark runner believes that "Konqueror" is your default browser, even if that is not the case. Thus it searches Konqueror's bookmarks instead of Opera's ones. There did you set your favorite browser? @devs maybe instead on relying on reading a config file [1] -- which is not that nice imho -- we could check which application is set to handle the http protocol. Especially as no BrowserApplication has to be set, while still applications handle http. [1] KConfigGroup config(KSharedConfig::openConfig("kdeglobals"), QLatin1String("General") ); const QString exec = config.readPathEntry( QLatin1String("BrowserApplication"), QString("") ); Or better do both, first the "BrowserApplication" and if empty then checking what handles html. Though still I think that method that would return the default browser would be best as that way no app would have to rely on the config file directly. SVN commit 1202964 by mfuchs: If no specific browser has been set as default, uses the application that is set to open html-files. BUG:224406 M +10 -1 bookmarksrunner.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=1202964 |