From 805536fafa73f87b5c4b0f6463d68ac49163715b Mon Sep 17 00:00:00 2001 From: Doug McLain Date: Sat, 16 Feb 2008 11:04:30 +0000 Subject: replace a typo with the result that led to the desired non-step behaviour on non-dragging clicks for horizontal sliders, so that the track can be selected by clicking on the fader without changing its position. git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3071 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/gtkmm2ext/pixfader.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libs') diff --git a/libs/gtkmm2ext/pixfader.cc b/libs/gtkmm2ext/pixfader.cc index 7f7e959ca8..41203afb69 100644 --- a/libs/gtkmm2ext/pixfader.cc +++ b/libs/gtkmm2ext/pixfader.cc @@ -138,8 +138,8 @@ PixFader::on_button_release_event (GdkEventButton* ev) { double fract, ev_pos; - (_orien == VERT) ? ev_pos = ev->y : ev->x; - + ev_pos = (_orien == VERT) ? ev->y : 0; // Don't step if we are horizontal + switch (ev->button) { case 1: if (dragging) { @@ -238,7 +238,7 @@ PixFader::on_motion_notify_event (GdkEventMotion* ev) { if (dragging) { double fract, delta, scale, ev_pos; - (_orien == VERT) ? ev_pos = ev->y : ev_pos = ev->x; + ev_pos = (_orien == VERT) ? ev->y : ev->x; //cerr << "PixFader::on_motion_notify_event() called x:y = " << ev->x << ":" << ev->y; if (ev->window != grab_window) { grab_loc = ev_pos; -- cgit v1.2.3