Zren / plasma-applet-tiledmenu

https://store.kde.org/p/2142716/
140 stars 35 forks source link

Hints are layered on the icons #160

Open dmaliog opened 1 month ago

dmaliog commented 1 month ago

Hints are layered on the icons

изображение

dmaliog commented 1 month ago

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 commented 1 month ago

изображение