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

No source names shown #6

Open
zone31 opened this issue Mar 6, 2018 · 1 comment
Open

No source names shown #6

zone31 opened this issue Mar 6, 2018 · 1 comment

Comments

@zone31
Copy link

zone31 commented Mar 6, 2018

image

As seen in the picture, none of the sources have names.
I used the downloader from the widgets chooser.
Using KDE neon, fresh install.

@nmalky
Copy link

nmalky commented Jul 8, 2019

If you look really closely, the sources do have names, but they're nearly invisible.
I solved this for myself by setting the text colour to blue.

com.github.burlog.plasmoid-sysmon/contents/ui/SystemMonitorDataSourceConfig.qml:

            // the second column with source name
            QtControls.TableViewColumn {
                id: name_col

                role: "name"
                title: i18n("Source Name")

                // rest of table
                width: sysmon_sources_view.width - selected_col.width - 32

                delegate: PlasmaComponents.Label {
                    text: model.name
                    color: "blue"

                    MouseArea {
                        anchors.fill: parent
                        hoverEnabled: true
                        onClicked: {
                            if (model) model.checked = !model.checked
                            configurationChanged(model)
                        }
                    }
                }

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

2 participants