git-gui: Use a label instead of a button for the back button
Apparently Tk on Mac OS X won't draw a button with an image using a transparent background. Instead it draws the button using some sort of 3D effect, even though I asked for no relief and no border. The background is also not our orange that we expected it to be. Earlier I had tried this same trick on Windows and it draws the same way as the button did, so I'm going to switch to the label as that seems to be more portable. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
parent
79c50bf3ee
commit
08dda17e00
@ -66,14 +66,18 @@ constructor new {i_commit i_path} {
|
||||
-anchor w \
|
||||
-justify left
|
||||
set w_back $w.header.commit_b
|
||||
button $w_back \
|
||||
-command [cb _history_menu] \
|
||||
label $w_back \
|
||||
-image ::blame::img_back_arrow \
|
||||
-borderwidth 0 \
|
||||
-relief flat \
|
||||
-state disabled \
|
||||
-background orange \
|
||||
-activebackground orange
|
||||
bind $w_back <Button-1> "
|
||||
if {\[$w_back cget -state\] eq {normal}} {
|
||||
[cb _history_menu]
|
||||
}
|
||||
"
|
||||
label $w.header.commit \
|
||||
-textvariable @commit \
|
||||
-background orange \
|
||||
|
Loading…
Reference in New Issue
Block a user