mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
Display tooltip showing names of overflowing tags in FileDetailsPage's overflow tag
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
parent
30830b44cc
commit
b440e3011d
1 changed files with 9 additions and 0 deletions
|
@ -199,6 +199,15 @@ Page {
|
|||
|
||||
visible: totalFileTags > maxFileTags
|
||||
text: "+" + String(totalFileTags - maxFileTags)
|
||||
|
||||
HoverHandler {
|
||||
id: hoverHandler
|
||||
}
|
||||
|
||||
NCToolTip {
|
||||
visible: hoverHandler.hovered
|
||||
text: tagRepeater.fileTagModel.overflowTagsString
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue