When pushing changes, the Remote combobox for the Destination Repository does not take all available space in the layout. With long remote names, this causes the combobox to have truncated entries even though there is room to display them. Anchor the remote_m combobox to both left and right edges of the grid cell and use the same padding as url_t for a consistent, dynamic layout. Signed-off-by: Peter Urbanec <git.user@xxxxxxxxxxx> --- lib/transport.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/transport.tcl b/lib/transport.tcl index a1a424a..1046dc5 100644 --- a/lib/transport.tcl +++ b/lib/transport.tcl @@ -173,7 +173,7 @@ proc do_push_anywhere {} { } else { eval tk_optionMenu $w.dest.remote_m push_remote $all_remotes } - grid $w.dest.remote_r $w.dest.remote_m -sticky w + grid $w.dest.remote_r $w.dest.remote_m -sticky we -padx {0 5} if {[lsearch -sorted -exact $all_remotes origin] != -1} { set push_remote origin } else { -- 2.15.1