(self, i, icon, refresh=True)
| 317 | self.Refresh() |
| 318 | |
| 319 | def SetPageIcon(self, i, icon, refresh=True): |
| 320 | tab = self.tabs_container.tabs[i] |
| 321 | tab.tab_img = icon |
| 322 | if refresh: |
| 323 | self.tabs_container.AdjustTabsSize() |
| 324 | self.Refresh() |
| 325 | |
| 326 | def SetPageTextIcon(self, i, text=wx.EmptyString, icon=None): |
| 327 | self.SetPageTitle(i, text, False) |
no test coverage detected