From d1d1397b4b421f5df66982781cee70c7d0ded59b Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Thu, 14 Oct 2021 13:54:20 +0200 Subject: [PATCH] Keep timeline title when no items on searching/filtering --- linphone-app/ui/modules/Linphone/Timeline/Timeline.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linphone-app/ui/modules/Linphone/Timeline/Timeline.qml b/linphone-app/ui/modules/Linphone/Timeline/Timeline.qml index e4ba7f1e7..07e522ab2 100644 --- a/linphone-app/ui/modules/Linphone/Timeline/Timeline.qml +++ b/linphone-app/ui/modules/Linphone/Timeline/Timeline.qml @@ -56,7 +56,7 @@ Rectangle { Layout.preferredHeight: TimelineStyle.legend.height Layout.alignment: Qt.AlignTop color: showHistory.containsMouse?TimelineStyle.legend.backgroundColor.hovered:TimelineStyle.legend.backgroundColor.normal - visible:view.count > 0 || searchView.visible + visible:view.count > 0 || searchView.visible || filterView.visible MouseArea{// no more showing history id:showHistory