From 35b79acacc488bde66eb7e032c3a1a6dd7373cd2 Mon Sep 17 00:00:00 2001 From: Sam Manzi Date: Sat, 10 Dec 2016 14:32:37 +1100 Subject: [PATCH] Feature#1682: Enable copying Soundex result --- gramps/plugins/gramplet/soundgen.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gramps/plugins/gramplet/soundgen.py b/gramps/plugins/gramplet/soundgen.py index 78629410a..e9c1b4f4d 100644 --- a/gramps/plugins/gramplet/soundgen.py +++ b/gramps/plugins/gramplet/soundgen.py @@ -69,6 +69,7 @@ class SoundGen(Gramplet): self.autocomp = Gtk.ComboBox.new_with_entry() grid.attach(self.autocomp, 1, 0, 1, 1) self.value = Gtk.Label(halign=Gtk.Align.START) + self.value.set_selectable(True) grid.attach(self.value, 1, 1, 1, 1) self.name = self.autocomp.get_child()