mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-28 17:57:16 +02:00
[GraphEditor] Chunks in progress bar are visible thanks to alternate of dark and light color
This commit is contained in:
parent
9036a973dd
commit
87e6969d9f
1 changed files with 2 additions and 1 deletions
|
@ -20,7 +20,8 @@ ListView {
|
|||
id: chunkDelegate
|
||||
height: root.chunkHeight
|
||||
width: root.chunkWidth
|
||||
color: Colors.getChunkColor(object, { "NONE": root.defaultColor })
|
||||
property var chunkColor: Colors.getChunkColor(object, { "NONE": root.defaultColor })
|
||||
color: index % 2 == 0 ? chunkColor : Qt.darker(chunkColor, 1.2)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue