diff options
Diffstat (limited to '')
| -rwxr-xr-x | git-gui.sh | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/git-gui.sh b/git-gui.sh index d395634caf..a484083bcd 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -913,15 +913,11 @@ proc apply_config {} { } global use_ttk NS - set use_ttk 0 - set NS {} - if {$repo_config(gui.usettk)} { - set use_ttk 1 - set NS ttk - bind [winfo class .] <<ThemeChanged>> [list InitTheme] - pave_toplevel . - color::sync_with_theme - } + set use_ttk 1 + set NS ttk + bind [winfo class .] <<ThemeChanged>> [list InitTheme] + pave_toplevel . + color::sync_with_theme global comment_string set comment_string [get_config core.commentstring] |
