Bug 865723
| Summary: | Firefox icon disappears from dock after upgrade from F16 to F17 | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Stas Sergeev <stsp2> |
| Component: | cinnamon | Assignee: | leigh scott <leigh123linux> |
| Status: | CLOSED NEXTRELEASE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 17 | CC: | dan.mashal, h1k6zn2m, leigh123linux, maxamillion, otaylor, samkraju, walters |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | 808894 | Environment: | |
| Last Closed: | 2012-10-12 09:35:35 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Stas Sergeev
2012-10-12 09:03:27 UTC
I am still having this bug, but I use cinnamon. Any chances the bug is still there in cinnamon, and not fixed by the aforementioned patch? *** Bug 865722 has been marked as a duplicate of this bug. *** (In reply to comment #1) > I am still having this bug, but I use cinnamon. > Any chances the bug is still there in cinnamon, > and not fixed by the aforementioned patch? I have added the js fix in cinnamon.git and will be present in the next cinnamon build --- a/js/ui/appFavorites.js +++ b/js/ui/appFavorites.js @@ -24,6 +24,12 @@ AppFavorites.prototype = { _reload: function() { let ids = global.settings.get_strv(this.FAVORITE_APPS_KEY); + // Fedora: Replace old mozilla-firefox.desktop with firefox.desktop, + for (let i = 0; i < ids.length; i++) { + if (ids[i] == 'mozilla-firefox.desktop') + ids[i] = 'firefox.desktop' + } + let appSys = Cinnamon.AppSystem.get_default(); let apps = ids.map(function (id) { let app = appSys.lookup_app(id); It appears in favourites, but not in an Internet menu. Would you please fix also this? Nevermind: now seems to appear also in menu! Thanks for the fix. |