Исправлено закрытиие вкладки Git по нажатию соотв. кнопки в панели инструментов

master
svkalinin 2022-11-23 12:49:23 +03:00
parent c988843bf0
commit 8402409489
1 changed files with 5 additions and 1 deletions

View File

@ -556,7 +556,11 @@ namespace eval Git {
global cfgVariables activeProject nbEditor
variable fr
if [winfo exists $nbEditor.git_browse] {
$nbEditor select $nbEditor.git_browse
if {[$nbEditor select] eq "$nbEditor.git_browse"} {
destroy $nbEditor.git_browse
} else {
$nbEditor select $nbEditor.git_browse
}
return
}
if {[info exists activeProject] == 0} {