Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
Claudio Cambra 2024-11-14 18:51:48 +08:00
Родитель d1e3b983a5
Коммит 8d6bc79770
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: C839200C384636B0
1 изменённых файлов: 10 добавлений и 7 удалений

Просмотреть файл

@ -714,16 +714,19 @@ ApplicationWindow {
visible: !trayWindowMainItem.isUnifiedSearchActive
anchors.bottom: trayWindowUnifiedSearchInputContainer.bottom
anchors.top: trayWindowUnifiedSearchInputContainer.bottom
anchors.left: trayWindowMainItem.left
anchors.right: trayWindowMainItem.right
}
Rectangle {
id: syncStatusSeparator
width: parent.width
height: 1
color: Style.menuBorder
}
Rectangle {
id: syncStatusSeparator
anchors.left: syncStatus.left
anchors.right: syncStatus.right
anchors.bottom: syncStatus.bottom
height: 1
color: palette.dark
visible: !trayWindowMainItem.isUnifiedSearchActive
}
Loader {