(self, mode_string)
| 48 | self.master._y_scrollbar.set(x,y) |
| 49 | |
| 50 | def _set_appearance_mode(self, mode_string): |
| 51 | self.colors = (self.master._apply_appearance_mode(self.text_color), |
| 52 | self.master._apply_appearance_mode(self.fg_color)) |
| 53 | self.set_colors() |
| 54 | |
| 55 | class CTkCodeBox(customtkinter.CTkTextbox): |
| 56 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected