beta2 #8

Merged
svk merged 49 commits from beta2 into master 2026-01-28 12:45:48 +03:00
14 changed files with 575 additions and 58 deletions
Showing only changes of commit 36d1940c7b - Show all commits

View File

@@ -124,7 +124,7 @@ proc Tools::GetMenu {m} {
if {[info exists cmd] == 1 && $cmd ne ""} { if {[info exists cmd] == 1 && $cmd ne ""} {
if {[info exists shortCut] == 1 && $shortCut ne ""} { if {[info exists shortCut] == 1 && $shortCut ne ""} {
$m add command -label $toolName -accelerator $shortCut -command [list Tools::Execute "$toolName"] $m add command -label $toolName -accelerator $shortCut -command [list Tools::Execute "$toolName"]
bind . <$shortCut> [list Tools::Execute "$toolName"] bind . <$shortCut> "[list Tools::Execute "$toolName"]; break"
} else { } else {
$m add command -label $toolName -command [list Tools::Execute "$toolName"] $m add command -label $toolName -command [list Tools::Execute "$toolName"]
} }