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:
Claudio Cambra 2023-04-27 22:08:28 +08:00
parent 30830b44cc
commit b440e3011d

View file

@ -199,6 +199,15 @@ Page {
visible: totalFileTags > maxFileTags
text: "+" + String(totalFileTags - maxFileTags)
HoverHandler {
id: hoverHandler
}
NCToolTip {
visible: hoverHandler.hovered
text: tagRepeater.fileTagModel.overflowTagsString
}
}
}
}