From 4edb6aba1814c54657792fd3260159f13001968d Mon Sep 17 00:00:00 2001 From: Camila Ayres Date: Fri, 13 Sep 2024 11:11:49 +0200 Subject: [PATCH] Add todo: check if we should keep bottomUnifiedSearchInputSeparator. Signed-off-by: Camila Ayres --- src/gui/tray/Window.qml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/src/gui/tray/Window.qml b/src/gui/tray/Window.qml index 7af5d5cdf..c6d4317e7 100644 --- a/src/gui/tray/Window.qml +++ b/src/gui/tray/Window.qml @@ -677,17 +677,18 @@ ApplicationWindow { onTextEdited: { UserModel.currentUser.unifiedSearchResultsListModel.searchTerm = trayWindowUnifiedSearchInputContainer.text } onClearText: { UserModel.currentUser.unifiedSearchResultsListModel.searchTerm = "" } - Rectangle { - id: bottomUnifiedSearchInputSeparator - - anchors.left: parent.left - anchors.right: parent.right - anchors.bottom: parent.bottom - - height: 1 - color: Style.menuBorder - visible: trayWindowMainItem.isUnifiedSearchActive - } + // TODO: consult designers, this line looks weird atm + // Rectangle { + // id: bottomUnifiedSearchInputSeparator + + // anchors.left: parent.left + // anchors.right: parent.right + // anchors.bottom: parent.bottom + + // height: 1 + // color: Style.menuBorder + // visible: trayWindowMainItem.isUnifiedSearchActive + // } } ErrorBox { -- 2.30.2