mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-21 20:45:51 +03:00
Merge pull request #4640 from nextcloud/bugfix/share-dialog
bugfix/share-dialog
This commit is contained in:
commit
ae61b5fc56
1 changed files with 2 additions and 3 deletions
|
@ -20,8 +20,6 @@ MouseArea {
|
|||
property color adjustedHeaderColor: Theme.darkMode ? Qt.lighter(UserModel.currentUser.headerColor, 2)
|
||||
: Qt.darker(UserModel.currentUser.headerColor, 1.5)
|
||||
|
||||
signal fileActivityButtonClicked(string absolutePath)
|
||||
|
||||
enabled: (model.path !== "" || model.link !== "" || model.isCurrentUserFileActivity === true)
|
||||
hoverEnabled: true
|
||||
|
||||
|
@ -79,7 +77,8 @@ MouseArea {
|
|||
|
||||
adjustedHeaderColor: root.adjustedHeaderColor
|
||||
|
||||
onShareButtonClicked: Systray.openShareDialog(model.displayPath, model.absolutePath)
|
||||
onShareButtonClicked: Systray.openShareDialog(model.displayPath, model.path)
|
||||
|
||||
onDismissButtonClicked: activityModel.slotTriggerDismiss(model.index)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue