From 418037bbbe841dcf9f4e2d550128256911f1d336 Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Thu, 14 Nov 2024 18:51:02 +0800 Subject: [PATCH] Fix components for share details page footer Signed-off-by: Claudio Cambra --- src/gui/filedetails/ShareDetailsPage.qml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/src/gui/filedetails/ShareDetailsPage.qml b/src/gui/filedetails/ShareDetailsPage.qml index 72836f530..b6f2838ed 100644 --- a/src/gui/filedetails/ShareDetailsPage.qml +++ b/src/gui/filedetails/ShareDetailsPage.qml @@ -750,7 +750,9 @@ Page { contentWidth: (contentItem as ListView).contentWidth visible: copyShareLinkButton.visible - CustomButton { + background: Rectangle { color: palette.base } + + Button { id: copyShareLinkButton function copyShareLink() { @@ -780,15 +782,6 @@ Page { onClicked: copyShareLink() - // TODO - // Behavior on bgColor { - // ColorAnimation { duration: Style.shortAnimationDuration } - // } - - // Behavior on bgHoverOpacity { - // NumberAnimation { duration: Style.shortAnimationDuration } - // } - Behavior on Layout.preferredWidth { SmoothedAnimation { duration: Style.shortAnimationDuration } } -- 2.30.2