pygui enabled delete on link context menu, removed split/merge for now, set edge labels to bold to stand out until better solution

This commit is contained in:
Blake Harnden 2020-05-01 23:47:37 -07:00
parent 5a8984de10
commit 491f2a8e93
4 changed files with 8 additions and 7 deletions

View file

@ -50,7 +50,9 @@ class Application(tk.Frame):
text_scale = self.app_scale if self.app_scale < 1 else math.sqrt(self.app_scale)
themes.scale_fonts(self.fonts_size, self.app_scale)
self.icon_text_font = font.Font(family="TkIconFont", size=int(12 * text_scale))
self.edge_font = font.Font(family="TkDefaultFont", size=int(8 * text_scale))
self.edge_font = font.Font(
family="TkDefaultFont", size=int(8 * text_scale), weight=font.BOLD
)
def setup_theme(self):
themes.load(self.style)