summaryrefslogtreecommitdiff
path: root/gtk2_ardour/floating_text_entry.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-06-30 17:25:52 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-06-30 17:41:11 -0400
commitb8d92ba356ae84b704ea2a19c0937876a250e50c (patch)
treeb4bf58299b72bcce558bec5ab9b25eaad92ba887 /gtk2_ardour/floating_text_entry.cc
parent5335763f986e5005110b3a1c84b3ad0e755ae9a1 (diff)
no reason to make floating text entry be in STATE_SELECTED when constructed
Diffstat (limited to 'gtk2_ardour/floating_text_entry.cc')
-rw-r--r--gtk2_ardour/floating_text_entry.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/floating_text_entry.cc b/gtk2_ardour/floating_text_entry.cc
index 955de8d2b1..64a04abc17 100644
--- a/gtk2_ardour/floating_text_entry.cc
+++ b/gtk2_ardour/floating_text_entry.cc
@@ -49,7 +49,7 @@ FloatingTextEntry::FloatingTextEntry (Gtk::Window* parent, const std::string& in
entry.signal_populate_popup().connect (sigc::mem_fun (*this, &FloatingTextEntry::populate_popup));
entry.select_region (0, -1);
- entry.set_state (Gtk::STATE_SELECTED);
+ // entry.set_state (Gtk::STATE_SELECTED);
if (parent) {
parent->signal_focus_out_event().connect (sigc::mem_fun (*this, &FloatingTextEntry::entry_focus_out));