kopia lustrzana https://github.com/inkstitch/inkstitch
rodzic
7ae5a4b91b
commit
2d18a061e3
|
@ -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:
|
||||
|
|
|
@ -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)
|
||||
|
|
Ładowanie…
Reference in New Issue