When I take the most basic QML plasmoid
and put it on the desktop, everything looks fine. But when I put it into the panel, the output is not shown in the panel, but is only displayed when I click on the empty icon.
But I want the information to be shown in the panel, just like the System Monitor plasmoids.
When I compare my code with the System Monitors, I cannot find the crucial bit that would change the display behavior.
Can someone tell me what's missing here?
(And a side question: What's the best forum or mailing list to discuss Plasoid development?)
Code:
import QtQuick 2.0 Item { id: main Text { id: greeting anchors.centerIn: main text: "hello world" } }
But I want the information to be shown in the panel, just like the System Monitor plasmoids.
When I compare my code with the System Monitors, I cannot find the crucial bit that would change the display behavior.
Can someone tell me what's missing here?
(And a side question: What's the best forum or mailing list to discuss Plasoid development?)
Comment