macOS Ventura: update background color (#3621)

main dev-build-kaalleen-batch-lettering-skip-empty
Kaalleen 2025-03-30 04:29:39 +00:00 zatwierdzone przez GitHub
rodzic 7ae5a4b91b
commit 2d18a061e3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
2 zmienionych plików z 5 dodań i 4 usunięć

Wyświetl plik

@ -307,8 +307,7 @@ class DrawingPanel(wx.Panel):
def set_background_color(self, color):
self.background_color = color
# this refresh is necessary for macOS
self.Refresh()
self._update_background_color()
def _update_background_color(self):
if not self.page_specs:

Wyświetl plik

@ -146,8 +146,10 @@ class ViewPanel(ScrolledPanel):
self.drawing_panel = drawing_panel
def on_update_background_color(self, event):
self.set_background_color(event.Colour)
self.drawing_panel.set_background_color(event.Colour)
color = event.Colour
self.set_background_color(color)
self.drawing_panel.set_background_color(color)
self.drawing_panel.Refresh()
def set_background_color(self, color):
self.btnBackgroundColor.SetColour(color)