small tweaks to throughput config dialog

This commit is contained in:
Blake Harnden 2019-12-26 14:00:22 -08:00
parent fe8bc6f10e
commit 3512eedc60
2 changed files with 44 additions and 30 deletions

View file

@ -135,9 +135,8 @@ class ShapeDialog(Dialog):
button.grid(row=0, column=1, sticky="ew")
def choose_text_color(self):
color_picker = ColorPickerDialog(self, self.app, "#000000")
color = color_picker.askcolor()
self.text_color = color
color_picker = ColorPickerDialog(self, self.app, self.text_color)
self.text_color = color_picker.askcolor()
def choose_fill_color(self):
color_picker = ColorPickerDialog(self, self.app, self.fill_color)