Update padding color on colorprofile pop

This commit is contained in:
Kovid Goyal
2022-03-23 08:35:36 +05:30
parent aabc99c7bf
commit 49c335972f
2 changed files with 10 additions and 1 deletions

View File

@@ -862,6 +862,10 @@ class Window:
if default_bg_changed:
get_boss().default_bg_changed_for(self.id)
def color_profile_popped(self, bg_changed: bool) -> None:
if bg_changed:
get_boss().default_bg_changed_for(self.id)
def report_color(self, code: str, r: int, g: int, b: int) -> None:
r |= r << 8
g |= g << 8