| Summary: | privateBrowsingIcon icon hardcoded | ||
|---|---|---|---|
| Product: | [Applications] Falkon | Reporter: | varlesh <varlesh> |
| Component: | general | Assignee: | David Rosca <nowrep> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | bfeber, matheus4551 |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Manjaro | ||
| OS: | Linux | ||
| Latest Commit: | https://commits.kde.org/falkon/f43250f880db29ead8c8eeb511d030f986c7ace8 | Version Fixed/Implemented In: | |
| Sentry Crash Report: | |||
*** Bug 400261 has been marked as a duplicate of this bug. *** Git commit f43250f880db29ead8c8eeb511d030f986c7ace8 by Christoph Cullmann, on behalf of Björn Feber. Committed on 11/12/2018 at 19:55. Pushed by cullmann into branch 'master'. Fix hardcoded private browsing icon Summary: Fixes the hardcoded private browsing icon in the Falkon application menu. Test Plan: Open the Falkon application menu on the top right. Reviewers: #falkon, drosca Reviewed By: #falkon, drosca Subscribers: ngraham, drosca, falkon, #falkon Tags: #falkon Differential Revision: https://phabricator.kde.org/D17288 M +1 -1 src/lib/tools/iconprovider.cpp https://commits.kde.org/falkon/f43250f880db29ead8c8eeb511d030f986c7ace8 |
Private Browsing not used icon from current system icon theme. QIcon IconProvider::newWindowIcon() { return QIcon::fromTheme(QSL("window-new"), QIcon(QSL(":/icons/menu/window-new.svg"))); } QIcon IconProvider::privateBrowsingIcon() { return QIcon(QSL(":/icons/menu/privatebrowsing.png")); } Maybe use icon im-user (it's similar looking with original icon)