Skip to content

Commit 9d5b545

Browse files
authored
v3.5fix2
1 parent dd83f23 commit 9d5b545

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

main/AutoSubSync.pyw

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ COLOR_SCHEMES = {
6060
"COLOR_TAB_INACTVE": ("gray20", "gray60"),
6161
"COLOR_BACKGROUND": ("SystemButtonFace", "#202020"),
6262
"COLOR_PROGRESSBAR": ("#00a31e", "#00a31e"),
63-
"COLOR_ONE": ("lightgrey", "grey5"),
63+
"COLOR_ZERO": ("lightgrey", "grey10"),
64+
"COLOR_ONE": ("lightgrey", "grey20"),
6465
"COLOR_TWO": ("lightgreen", "#0a420a"),
6566
"COLOR_THREE": ("lightblue", "#12303b"),
6667
"COLOR_FOUR": ("lightgoldenrodyellow", "#5c5c0a"),
@@ -92,6 +93,7 @@ COLOR_PRIMARY = COLOR_SCHEMES["COLOR_PRIMARY"][is_dark_theme]
9293
COLOR_SECONDARY = COLOR_SCHEMES["COLOR_SECONDARY"][is_dark_theme]
9394
COLOR_TAB_INACTVE = COLOR_SCHEMES["COLOR_TAB_INACTVE"][is_dark_theme]
9495
COLOR_PROGRESSBAR = COLOR_SCHEMES["COLOR_PROGRESSBAR"][is_dark_theme]
96+
COLOR_ZERO = COLOR_SCHEMES["COLOR_ZERO"][is_dark_theme]
9597
COLOR_ONE = COLOR_SCHEMES["COLOR_ONE"][is_dark_theme]
9698
COLOR_TWO = COLOR_SCHEMES["COLOR_TWO"][is_dark_theme]
9799
COLOR_THREE = COLOR_SCHEMES["COLOR_THREE"][is_dark_theme]
@@ -2964,7 +2966,7 @@ button_remove_item = tk.Button(
29642966
cursor="hand2"
29652967
)
29662968
style = ttk.Style()
2967-
style.configure("Treeview", rowheight=25, background=COLOR_ONE, fieldbackground=COLOR_WB, foreground=COLOR_BW)
2969+
style.configure("Treeview", rowheight=25, background=COLOR_ZERO, fieldbackground=COLOR_WB, foreground=COLOR_BW)
29682970
style.map("Treeview", background=[('selected', TREEVIEW_SELECTED_COLOR)])
29692971
# Replace the "Add Pair" button with a Menubutton
29702972
button_addfile = tk.Menubutton(
@@ -4105,4 +4107,4 @@ dark_title_bar(root)
41054107
if os.path.exists('icon.ico'):
41064108
root.iconbitmap('icon.ico')
41074109
root.deiconify() # Show the window after it's been built
4108-
root.mainloop()
4110+
root.mainloop()

0 commit comments

Comments
 (0)