From 0f45eed58cef0471fcabe18de93c5d2fa5a84dda Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 25 Nov 2009 00:13:58 +0000 Subject: [PATCH] Fix #2922. git-svn-id: svn://localhost/ardour2/branches/3.0@6167 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/time_axis_view.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/time_axis_view.cc b/gtk2_ardour/time_axis_view.cc index 98f801ae72..31bea78aca 100644 --- a/gtk2_ardour/time_axis_view.cc +++ b/gtk2_ardour/time_axis_view.cc @@ -460,7 +460,7 @@ TimeAxisView::name_entry_key_release (GdkEventKey* ev) /* resize to show editable name display */ - if ((*i)->current_height() >= hSmall && (*i)->current_height() < hNormal) { + if ((*i)->current_height() <= hSmaller) { (*i)->set_height (hSmaller); } -- 2.30.2