[GraphEditor] Remove "common.js" and use Utils.Colors instead

This commit is contained in:
Candice Bentéjac 2025-02-14 17:19:11 +01:00
parent 6ee3b01177
commit b7716ef1bd
3 changed files with 2 additions and 30 deletions

View file

@ -2,7 +2,7 @@ import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import "common.js" as Common
import Utils 1.0
/**
* ChunkListView
@ -86,7 +86,7 @@ ColumnLayout {
Rectangle {
width: 4
height: parent.height
color: Common.getChunkColor(parent.chunk)
color: Colors.getChunkColor(parent.chunk)
}
}
}