Updates tab drop shadow bitmap
(self)
| 1243 | pass |
| 1244 | |
| 1245 | def UpdateTabFX(self): |
| 1246 | """ Updates tab drop shadow bitmap """ |
| 1247 | self.fxBmps.clear() |
| 1248 | for tab in self.tabs: |
| 1249 | tabW, tabH = tab.tab_size |
| 1250 | self.fxBmps[tab] = self.GetTabFx(tabW, self.height + 1) |
| 1251 | |
| 1252 | @lru_cache(maxsize=50) |
| 1253 | def GetTabFx(self, width, height): |
no test coverage detected