Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alicevision/meshroom.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoïc Vital <mugulmotion@gmail.com>2022-11-04 17:52:27 +0300
committerLoïc Vital <mugulmotion@gmail.com>2022-11-04 17:52:27 +0300
commitb518a2478d48c95f7bc1266bba9e60064c7141f9 (patch)
tree029c7648ea05ae7b97ed2981233829b9b515c26e
parentaa5e8564e07a497b1f65fc99174b3e8184c5fedf (diff)
[ui] ImageGallery: search bar to filter with filename
-rw-r--r--meshroom/ui/qml/ImageGallery/ImageGallery.qml8
1 files changed, 8 insertions, 0 deletions
diff --git a/meshroom/ui/qml/ImageGallery/ImageGallery.qml b/meshroom/ui/qml/ImageGallery/ImageGallery.qml
index 0ab31577..38834a85 100644
--- a/meshroom/ui/qml/ImageGallery/ImageGallery.qml
+++ b/meshroom/ui/qml/ImageGallery/ImageGallery.qml
@@ -106,6 +106,14 @@ Panel {
}
headerBar: RowLayout {
+ SearchBar {
+ id: searchBar
+ width: 100
+ onTextChanged: {
+ sortedModel.updateFilter("path", text);
+ }
+ }
+
MaterialToolButton {
text: MaterialIcons.more_vert
font.pointSize: 11