Fix editor tables rows coloring to start with darker one
This commit is contained in:
@@ -326,7 +326,7 @@ namespace FlaxEditor.Windows.Profiler
|
||||
|
||||
// Add row to the table
|
||||
row.Width = _table.Width;
|
||||
row.BackgroundColor = rowIndex % 2 == 0 ? rowColor2 : Color.Transparent;
|
||||
row.BackgroundColor = rowIndex % 2 == 1 ? rowColor2 : Color.Transparent;
|
||||
row.Parent = _table;
|
||||
rowIndex++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user