(self, colItem, item)
| 287 | Display.refresh(self, items) |
| 288 | |
| 289 | def columnBackground(self, colItem, item): |
| 290 | if self.sFit.serviceFittingOptions["colorFitBySlot"]: |
| 291 | colorMap = slotColourMapDark if isDark() else slotColourMap |
| 292 | return colorMap.get(Module.calculateSlot(item)) or self.GetBackgroundColour() |
| 293 | else: |
| 294 | return self.GetBackgroundColour() |
nothing calls this directly
no test coverage detected