This commit is contained in:
Valeria Fadeeva 2024-04-17 11:04:00 +05:00
parent 5bea7cf2ff
commit a950d20990
1 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ import "../_toolbox" as Tb
import "../service" as Sv import "../service" as Sv
// Корневой элемент // Корневой элемент
Item { PlasmoidItem {
id: root id: root
property string appTitle: Plasmoid.configuration.title property string appTitle: Plasmoid.configuration.title
@ -45,9 +45,9 @@ Item {
property string listOfPackages: "" property string listOfPackages: ""
Plasmoid.preferredRepresentation: Plasmoid.compactRepresentation // map the UI
Plasmoid.compactRepresentation: Compact {} compactRepresentation: Compact {}
Plasmoid.fullRepresentation: Full {} fullRepresentation: Full {}
// load one instance of each needed service // load one instance of each needed service
Sv.Updater{ id: updater } Sv.Updater{ id: updater }
Tb.Cmd { id: cmd } Tb.Cmd { id: cmd }