diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-16 20:03:35 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-16 20:03:35 -0500 |
| commit | 84638bfdb83fe653fbe4144e94efff0c5a28ecec (patch) | |
| tree | 1d0ed42a14aa268ce650c60955289c0683659bae /modules | |
| parent | controlcenter: deferred pane loading and limited simultaneous pane loading (diff) | |
| download | caelestia-shell-84638bfdb83fe653fbe4144e94efff0c5a28ecec.tar.gz caelestia-shell-84638bfdb83fe653fbe4144e94efff0c5a28ecec.tar.bz2 caelestia-shell-84638bfdb83fe653fbe4144e94efff0c5a28ecec.zip | |
hierarchy: renamed for consistency
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/bar/popouts/Content.qml | 2 | ||||
| -rw-r--r-- | modules/bar/popouts/WirelessPassword.qml (renamed from modules/bar/popouts/WirelessPasswordPopout.qml) | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/modules/bar/popouts/Content.qml b/modules/bar/popouts/Content.qml index 7561eec..da993fa 100644 --- a/modules/bar/popouts/Content.qml +++ b/modules/bar/popouts/Content.qml @@ -51,7 +51,7 @@ Item { Popout { id: passwordPopout name: "wirelesspassword" - sourceComponent: WirelessPasswordPopout { + sourceComponent: WirelessPassword { id: passwordComponent wrapper: root.wrapper network: networkPopout.item?.passwordNetwork ?? null diff --git a/modules/bar/popouts/WirelessPasswordPopout.qml b/modules/bar/popouts/WirelessPassword.qml index 59a15b9..a9d098e 100644 --- a/modules/bar/popouts/WirelessPasswordPopout.qml +++ b/modules/bar/popouts/WirelessPassword.qml @@ -601,3 +601,4 @@ ColumnLayout { } } } + |