From b1d7d540022366b3e0e54ef7d1847fdabb68717e Mon Sep 17 00:00:00 2001 From: Andreas Traczyk <andreas.traczyk@savoirfairelinux.com> Date: Thu, 8 Apr 2021 12:42:05 -0400 Subject: [PATCH] misc: fix a visual bug on the main split view handle Change-Id: I288577bb49b85097d57d81724a463171f5fa257e --- src/mainview/MainView.qml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/mainview/MainView.qml b/src/mainview/MainView.qml index 9055579db..9e2d63f2a 100644 --- a/src/mainview/MainView.qml +++ b/src/mainview/MainView.qml @@ -277,13 +277,11 @@ Rectangle { handle: Rectangle { implicitWidth: JamiTheme.splitViewHandlePreferredWidth implicitHeight: splitView.height - color: JamiTheme.backgroundColor + color: JamiTheme.primaryBackgroundColor Rectangle { implicitWidth: 1 implicitHeight: splitView.height - color: SplitHandle.pressed ? JamiTheme.pressColor : - (SplitHandle.hovered ? JamiTheme.hoverColor : - JamiTheme.tabbarBorderColor) + color: JamiTheme.tabbarBorderColor } } -- GitLab