This option is supposed to make a Tcl/Tk app look more like a native app for the respective platform. This doesn't seem to work on Mac, it looks worse than the non-ttk appearance (for instance, the colored pane headers are grey). Users who really prefer the ttk look can still turn it on with the gui.usettk config. Signed-off-by: Stefan Haller <stefan@xxxxxxxxxxxxxxxx> --- git-gui.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-gui.sh b/git-gui.sh index 867b8ce..f7e13ca 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -897,7 +897,7 @@ set default_config(gui.fontui) [font configure font_ui] set default_config(gui.fontdiff) [font configure font_diff] # TODO: this option should be added to the git-config documentation set default_config(gui.maxfilesdisplayed) 5000 -set default_config(gui.usettk) 1 +set default_config(gui.usettk) [expr ![is_MacOSX]] set default_config(gui.warndetachedcommit) 1 set default_config(gui.tabsize) 8 set font_descs { -- 2.29.0.rc1