Skip to content
New issue

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 #160

Open
dmaliog opened this issue Jul 16, 2024 · 2 comments
Open

Hints are layered on the icons #160

dmaliog opened this issue Jul 16, 2024 · 2 comments

Comments

@dmaliog
Copy link

dmaliog commented Jul 16, 2024

Hints are layered on the icons

изображение

@dmaliog
Copy link
Author

dmaliog commented Jul 16, 2024

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.

@dmaliog
Copy link
Author

dmaliog commented Jul 16, 2024

изображение

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant