mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 15:06:08 +03:00
Fix sync status separator
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
parent
418037bbbe
commit
e44830f2b8
1 changed files with 10 additions and 7 deletions
|
@ -714,16 +714,19 @@ ApplicationWindow {
|
||||||
|
|
||||||
visible: !trayWindowMainItem.isUnifiedSearchActive
|
visible: !trayWindowMainItem.isUnifiedSearchActive
|
||||||
|
|
||||||
anchors.bottom: trayWindowUnifiedSearchInputContainer.bottom
|
anchors.top: trayWindowUnifiedSearchInputContainer.bottom
|
||||||
anchors.left: trayWindowMainItem.left
|
anchors.left: trayWindowMainItem.left
|
||||||
anchors.right: trayWindowMainItem.right
|
anchors.right: trayWindowMainItem.right
|
||||||
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: syncStatusSeparator
|
id: syncStatusSeparator
|
||||||
width: parent.width
|
anchors.left: syncStatus.left
|
||||||
|
anchors.right: syncStatus.right
|
||||||
|
anchors.bottom: syncStatus.bottom
|
||||||
height: 1
|
height: 1
|
||||||
color: Style.menuBorder
|
color: palette.dark
|
||||||
}
|
visible: !trayWindowMainItem.isUnifiedSearchActive
|
||||||
}
|
}
|
||||||
|
|
||||||
Loader {
|
Loader {
|
||||||
|
|
Loading…
Reference in a new issue