# HG changeset patch # User Andrew Shadura # Date 1362930143 -3600 # Node ID 932f5d3587c986c7378b2f13521d67424f30b395 # Parent 6a0578d07024bbcba57e110f5b5db90287743e70 hgk: in popups, replace labels with window titles Replace labels with window titles. That also requires to change grid placement manager settings to compensate padding which used to be applied to now non-existent labels. diff -r 6a0578d07024 -r 932f5d3587c9 contrib/hgk --- a/contrib/hgk Sun Mar 10 16:42:16 2013 +0100 +++ b/contrib/hgk Sun Mar 10 16:42:23 2013 +0100 @@ -3742,13 +3742,11 @@ set patchtop $top catch {destroy $top} toplevel $top - ttk::label $top.title -text "Generate patch" - grid $top.title - -pady 10 ttk::label $top.from -text "From:" ttk::entry $top.fromsha1 -width 40 $top.fromsha1 insert 0 $oldid $top.fromsha1 conf -state readonly - grid $top.from $top.fromsha1 -sticky w + grid $top.from $top.fromsha1 -sticky w -pady {10 0} ttk::entry $top.fromhead -width 60 $top.fromhead insert 0 $oldhead $top.fromhead conf -state readonly @@ -3778,6 +3776,7 @@ grid $top.buts - -pady 10 -sticky ew focus $top.fname popupify $top + wm title $top "Generate a patch" } proc mkpatchrev {} { @@ -3823,13 +3822,11 @@ set mktagtop $top catch {destroy $top} toplevel $top - ttk::label $top.title -text "Create tag" - grid $top.title - -pady 10 ttk::label $top.id -text "ID:" ttk::entry $top.sha1 -width 40 $top.sha1 insert 0 $rowmenuid $top.sha1 conf -state readonly - grid $top.id $top.sha1 -sticky w + grid $top.id $top.sha1 -sticky w -pady {10 0} ttk::entry $top.head -width 60 $top.head insert 0 [lindex $commitinfo($rowmenuid) 0] $top.head conf -state readonly @@ -3846,6 +3843,7 @@ grid $top.buts - -pady 10 -sticky ew focus $top.tag popupify $top + wm title $top "Create a tag" } proc domktag {} { @@ -3904,13 +3902,11 @@ set wrcomtop $top catch {destroy $top} toplevel $top - ttk::label $top.title -text "Write commit to file" - grid $top.title - -pady 10 ttk::label $top.id -text "ID:" ttk::entry $top.sha1 -width 40 $top.sha1 insert 0 $rowmenuid $top.sha1 conf -state readonly - grid $top.id $top.sha1 -sticky w + grid $top.id $top.sha1 -sticky w -pady {10 0} ttk::entry $top.head -width 60 $top.head insert 0 [lindex $commitinfo($rowmenuid) 0] $top.head conf -state readonly @@ -3931,6 +3927,7 @@ grid $top.buts - -pady 10 -sticky ew focus $top.fname popupify $top + wm title $top "Write commit to a file" } proc wrcomgo {} {