Merge branch 'py/blame-status-error'
Fixes an error popup in blame because of a missing closing bracket. * py/blame-status-error: git-gui: fix error popup when doing blame -> "Show History Context"maint
commit
d769dcc5cd
10
git-gui.sh
10
git-gui.sh
|
@ -2205,11 +2205,13 @@ proc do_gitk {revs {is_submodule false}} {
|
||||||
set env(GIT_WORK_TREE) $_gitworktree
|
set env(GIT_WORK_TREE) $_gitworktree
|
||||||
cd $pwd
|
cd $pwd
|
||||||
|
|
||||||
set status_operation [$::main_status \
|
if {[info exists main_status]} {
|
||||||
start \
|
set status_operation [$::main_status \
|
||||||
[mc "Starting %s... please wait..." "gitk"]]
|
start \
|
||||||
|
[mc "Starting %s... please wait..." "gitk"]]
|
||||||
|
|
||||||
after 3500 [list $status_operation stop]
|
after 3500 [list $status_operation stop]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue