The selection of the branch to be pushed would be cleared when the remote was changed. This seems to be dependent on the fact that the selected content in the combobox was exported to the clipboard. It was only apparent when using the new ttk widget. Signed-off-by: Heiko Voigt <hvoigt@xxxxxxxxxx> --- Note: This patch was created inside the official git repo but should apply cleanly to git-gui's master using 'git am -p2' git-gui/lib/transport.tcl | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/git-gui/lib/transport.tcl b/git-gui/lib/transport.tcl index 49155c7..e4e1add 100644 --- a/git-gui/lib/transport.tcl +++ b/git-gui/lib/transport.tcl @@ -223,7 +223,9 @@ proc do_push_anywhere {} { -value remote \ -variable push_urltype if {$use_ttk} { - ttk::combobox $w.dest.remote_m -textvariable push_remote \ + ttk::combobox $w.dest.remote_m -state readonly \ + -exportselection false \ + -textvariable push_remote \ -values $all_remotes } else { eval tk_optionMenu $w.dest.remote_m push_remote $all_remotes -- 1.7.4.34.gd2cb1 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html