diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-01-20 23:52:19 -0500 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-01-21 02:54:25 -0500 |
commit | ab26abd483d2e63f782a4335331ba6b2cfeed1bc (patch) | |
tree | 822402b0ab4dfc0eee4feddb78d59d700800eec2 | |
parent | git-gui: Only permit selection in one list at a time. (diff) | |
download | tgif-ab26abd483d2e63f782a4335331ba6b2cfeed1bc.tar.xz |
git-gui: Pad the cancel/save buttons in the options window.
It looks horrible to have the cancel and save buttons wedged up against
each other in our options dialog. Therefore toss a 5 pixel pad between
them.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rwxr-xr-x | git-gui.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-gui.sh b/git-gui.sh index a1002ecab8..13cd1b9b4a 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -2582,7 +2582,7 @@ proc do_options {} { button $w.buttons.cancel -text {Cancel} \ -font font_ui \ -command [list destroy $w] - pack $w.buttons.cancel -side right + pack $w.buttons.cancel -side right -padx 5 pack $w.buttons -side bottom -fill x -pady 10 -padx 10 labelframe $w.repo -text "[reponame] Repository" \ |