From 46e96f8e89276f01448bd85ca2a6639f71b1fd0e Mon Sep 17 00:00:00 2001 From: SpliiT Date: Wed, 13 May 2026 16:31:37 +0200 Subject: [PATCH 1/5] fix(UI): Some changes on the actual UI --- app/components/Loading.vue | 22 ++++++++++++++-------- app/components/Loading/EcoMessages.vue | 6 +++--- app/components/Loading/Header.vue | 21 +++++++++++++++------ app/components/Loading/Progress.vue | 2 +- 4 files changed, 33 insertions(+), 18 deletions(-) diff --git a/app/components/Loading.vue b/app/components/Loading.vue index b389e407..50f4eee9 100644 --- a/app/components/Loading.vue +++ b/app/components/Loading.vue @@ -44,7 +44,7 @@ onUnmounted(() => {
- - - - +
+ + + + +
diff --git a/app/components/Loading/EcoMessages.vue b/app/components/Loading/EcoMessages.vue index 73e46bfb..59bc193b 100644 --- a/app/components/Loading/EcoMessages.vue +++ b/app/components/Loading/EcoMessages.vue @@ -40,18 +40,18 @@ onUnmounted(() => { From c6c963d49f86e34e79cfd3636f1a355dc99d0922 Mon Sep 17 00:00:00 2001 From: SpliiT Date: Wed, 13 May 2026 16:41:37 +0200 Subject: [PATCH 2/5] fix rename tab --- app/stores/treeview.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/app/stores/treeview.js b/app/stores/treeview.js index 7300df77..353d6acd 100644 --- a/app/stores/treeview.js +++ b/app/stores/treeview.js @@ -216,6 +216,24 @@ export const useTreeviewStore = defineStore("treeview", () => { }; } + function renameItem(id, newName) { + for (const group of items.value) { + const child = group.children.find((childItem) => childItem.id === id); + if (child) { + child.title = newName; + const options = { numeric: true, sensitivity: "base" }; + group.children.sort((childA, childB) => + childA.title.localeCompare(childB.title, undefined, options), + ); + break; + } + } + const view = opened_views.value.find((openedView) => openedView.id === id); + if (view) { + view.title = newName; + } + } + return { items, selection, @@ -226,6 +244,7 @@ export const useTreeviewStore = defineStore("treeview", () => { rowHeights, addItem, removeItem, + renameItem, displayAdditionalTree, closeView, moveView, From 02f9334a5b5f6220bc8ff8980b47c35c6372152f Mon Sep 17 00:00:00 2001 From: SpliiT Date: Wed, 13 May 2026 17:01:39 +0200 Subject: [PATCH 3/5] eyes changes --- .../Viewer/ObjectTree/Base/TreeRow.vue | 28 +++++++++------ app/composables/virtual_tree.js | 34 +++++++++++++++---- 2 files changed, 45 insertions(+), 17 deletions(-) diff --git a/app/components/Viewer/ObjectTree/Base/TreeRow.vue b/app/components/Viewer/ObjectTree/Base/TreeRow.vue index 7ce1fd8e..391e56fe 100644 --- a/app/components/Viewer/ObjectTree/Base/TreeRow.vue +++ b/app/components/Viewer/ObjectTree/Base/TreeRow.vue @@ -1,11 +1,12 @@