diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-20 15:32:56 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-20 15:32:56 +1000 |
| commit | 73cf10ea968c7ee1fbc2eebc4691d6824989008a (patch) | |
| tree | 08543053837f3d279d9ced69ce3b2f254d7c52f2 /widgets/filedialog/FolderContents.qml | |
| parent | filedialog: add empty text (diff) | |
| download | caelestia-shell-73cf10ea968c7ee1fbc2eebc4691d6824989008a.tar.gz caelestia-shell-73cf10ea968c7ee1fbc2eebc4691d6824989008a.tar.bz2 caelestia-shell-73cf10ea968c7ee1fbc2eebc4691d6824989008a.zip | |
filedialog: add current item
Diffstat (limited to '')
| -rw-r--r-- | widgets/filedialog/FolderContents.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/widgets/filedialog/FolderContents.qml b/widgets/filedialog/FolderContents.qml index 82ed2bc..81f8729 100644 --- a/widgets/filedialog/FolderContents.qml +++ b/widgets/filedialog/FolderContents.qml @@ -203,6 +203,14 @@ Item { } } + CurrentItem { + anchors.right: parent.right + anchors.bottom: parent.bottom + anchors.margins: Appearance.padding.small + + currentItem: view.currentItem + } + component Anim: NumberAnimation { duration: Appearance.anim.durations.normal easing.type: Easing.BezierSpline |