Dear oh dear. Re-fix main fader double click and internal send edit.
git-svn-id: svn://localhost/ardour2/branches/3.0@8500 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
f6e12d4210
commit
6dde76454d
@ -1641,10 +1641,10 @@ ProcessorBox::toggle_edit_processor (boost::shared_ptr<Processor> processor)
|
||||
}
|
||||
|
||||
if (_parent_strip) {
|
||||
if (boost::dynamic_pointer_cast<Send> (_parent_strip->current_delivery()) == send) {
|
||||
if (boost::dynamic_pointer_cast<Send> (_parent_strip->current_delivery()) == internal_send) {
|
||||
_parent_strip->revert_to_default_display ();
|
||||
} else {
|
||||
_parent_strip->show_send (send);
|
||||
_parent_strip->show_send (internal_send);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -122,6 +122,10 @@ PixFader::on_size_request (GtkRequisition* req)
|
||||
bool
|
||||
PixFader::on_button_press_event (GdkEventButton* ev)
|
||||
{
|
||||
if (ev->type != GDK_BUTTON_PRESS) {
|
||||
return false;
|
||||
}
|
||||
|
||||
switch (ev->button) {
|
||||
case 1:
|
||||
case 2:
|
||||
|
Loading…
Reference in New Issue
Block a user