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-09-30 14:43:50 +0300
committerFabien Castan <fabcastan@gmail.com>2022-10-19 11:50:20 +0300
commit91cc786e1486c5e87d7c9446e88f032039d0cc2d (patch)
tree6ffa059c25fe8b6ab07a41a0a8c4372f5dae735c
parent88e822a9de9f449e060fdb705d5d210a34586be9 (diff)
[ui] coherent naming "Image Gallery" across app
-rw-r--r--meshroom/ui/qml/ImageGallery/ImageGallery.qml2
-rw-r--r--meshroom/ui/qml/Viewer/Viewer2D.qml2
2 files changed, 2 insertions, 2 deletions
diff --git a/meshroom/ui/qml/ImageGallery/ImageGallery.qml b/meshroom/ui/qml/ImageGallery/ImageGallery.qml
index c66ed025..0ab31577 100644
--- a/meshroom/ui/qml/ImageGallery/ImageGallery.qml
+++ b/meshroom/ui/qml/ImageGallery/ImageGallery.qml
@@ -30,7 +30,7 @@ Panel {
signal removeImageRequest(var attribute)
signal filesDropped(var drop, var augmentSfm)
- title: "Images"
+ title: "Image Gallery"
implicitWidth: (root.defaultCellSize + 2) * 2
QtObject {
diff --git a/meshroom/ui/qml/Viewer/Viewer2D.qml b/meshroom/ui/qml/Viewer/Viewer2D.qml
index ba077a43..2fc02bc7 100644
--- a/meshroom/ui/qml/Viewer/Viewer2D.qml
+++ b/meshroom/ui/qml/Viewer/Viewer2D.qml
@@ -1111,7 +1111,7 @@ FocusScope {
property var names: []
property string name: names[currentIndex] ? names[currentIndex] : ""
- model: displayedNode ? names.map(n => (n == "gallery") ? "Gallery" : displayedNode.attributes.get(n).label) : []
+ model: displayedNode ? names.map(n => (n == "gallery") ? "Image Gallery" : displayedNode.attributes.get(n).label) : []
enabled: count > 0
FontMetrics {