mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-23 15:16:25 +01:00
Revert "change return value for several RouteUI:: button press handlers so that WavesButton::on_button_press_event() is still called."
This reverts commit 56890964ec.
This commit is contained in:
parent
4e28348e55
commit
d47d4f545a
1 changed files with 10 additions and 10 deletions
|
|
@ -460,7 +460,7 @@ RouteUI::mute_press (GdkEventButton* ev)
|
||||||
_session->set_mute (rl, !_route->muted());
|
_session->set_mute (rl, !_route->muted());
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
|
@ -618,7 +618,7 @@ RouteUI::solo_press(GdkEventButton* ev)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
|
@ -641,7 +641,7 @@ RouteUI::solo_release (GdkEventButton*)
|
||||||
_solo_release = 0;
|
_solo_release = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
|
@ -654,7 +654,7 @@ RouteUI::rec_enable_press(GdkEventButton* ev)
|
||||||
if (!_session->engine().connected()) {
|
if (!_session->engine().connected()) {
|
||||||
MessageDialog msg (_("Not connected to AudioEngine - cannot engage record"));
|
MessageDialog msg (_("Not connected to AudioEngine - cannot engage record"));
|
||||||
msg.run ();
|
msg.run ();
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_midi_track()) {
|
if (is_midi_track()) {
|
||||||
|
|
@ -663,7 +663,7 @@ RouteUI::rec_enable_press(GdkEventButton* ev)
|
||||||
|
|
||||||
if (midi_track()->step_editing()) {
|
if (midi_track()->step_editing()) {
|
||||||
midi_track()->set_step_editing (false);
|
midi_track()->set_step_editing (false);
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -715,7 +715,7 @@ RouteUI::rec_enable_press(GdkEventButton* ev)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
@ -747,7 +747,7 @@ RouteUI::update_monitoring_display ()
|
||||||
bool
|
bool
|
||||||
RouteUI::monitor_input_press(GdkEventButton*)
|
RouteUI::monitor_input_press(GdkEventButton*)
|
||||||
{
|
{
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
|
@ -759,7 +759,7 @@ RouteUI::monitor_input_release(GdkEventButton* ev)
|
||||||
bool
|
bool
|
||||||
RouteUI::monitor_disk_press (GdkEventButton*)
|
RouteUI::monitor_disk_press (GdkEventButton*)
|
||||||
{
|
{
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
|
@ -882,10 +882,10 @@ RouteUI::rec_enable_release (GdkEventButton* ev)
|
||||||
if (record_menu) {
|
if (record_menu) {
|
||||||
record_menu->popup (1, ev->time);
|
record_menu->popup (1, ev->time);
|
||||||
}
|
}
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue