We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hints are layered on the icons
The text was updated successfully, but these errors were encountered:
I found the file /com.github.zren.tiledmenu/contents/ui/SidebarView.qml
And changed the lines
SidebarViewButton { appletIconName: "view-tilesonly" text: i18n("Tiles Only") onClicked: searchView.showTilesOnly() checked: searchView.showingOnlyTiles visible: checked || plasmoid.configuration.defaultAppListView == 'TilesOnly' background: Rectangle { color: "transparent" } } SidebarViewButton { appletIconName: "view-list-alphabetically" text: i18n("Alphabetical") onClicked: appsView.showAppsAlphabetically() checked: searchView.showingAppsAlphabetically background: Rectangle { color: "transparent" } } SidebarViewButton { appletIconName: 'view-list-categorically' text: i18n("Categories") onClicked: appsView.showAppsCategorically() checked: searchView.showingAppsCategorically background: Rectangle { color: "transparent" } }
In this code I applied transparency to the text and the problem went away.
Sorry, something went wrong.
No branches or pull requests
Hints are layered on the icons
The text was updated successfully, but these errors were encountered: