# HG changeset patch
# User Adrian Buehlmann <[email protected]>
# Date 1253484128 -7200
# Node ID d237f059242d4917f02dfb9633c6fb400259409a
# Parent 2e31643292abc49182effea6663b29e08693921b
update: allow to select parent texts
diff --git a/tortoisehg/hgtk/update.py b/tortoisehg/hgtk/update.py
--- a/tortoisehg/hgtk/update.py
+++ b/tortoisehg/hgtk/update.py
@@ -93,6 +93,7 @@ class UpdateDialog(gtk.Dialog):
# summary of new revision
label = gtk.Label('-')
+ label.set_selectable(True)
hb = gtk.HBox()
hb.pack_start(label, False, False)
addrow('', hb, expand=False)
@@ -100,6 +101,7 @@ class UpdateDialog(gtk.Dialog):
# summary of current revision
label = gtk.Label('-')
+ label.set_selectable(True)
hb = gtk.HBox()
hb.pack_start(label, False, False)
self.current_rev_label1 = label
@@ -108,6 +110,7 @@ class UpdateDialog(gtk.Dialog):
if len(self.ctxs) == 2:
addrow(_('Parent 1:'), hb, expand=False)
label = gtk.Label('-')
+ label.set_selectable(True)
hb = gtk.HBox()
hb.pack_start(label, False, False)
addrow('Parent 2:', hb, expand=False)
------------------------------------------------------------------------------
Come build with us! The BlackBerry® Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay
ahead of the curve. Join us from November 9-12, 2009. Register now!
http://p.sf.net/sfu/devconf
_______________________________________________
Tortoisehg-develop mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tortoisehg-develop