mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 16:46:35 +01:00
Formatting. Adds spaces before parentheses
This commit is contained in:
parent
8e375f5acd
commit
f3bd740913
1 changed files with 4 additions and 4 deletions
|
|
@ -732,17 +732,17 @@ bool SendsSubview::handle_cursor_left_press()
|
|||
bool SendsSubview::handle_cursor_right_press()
|
||||
{
|
||||
uint32_t num_sends = 0;
|
||||
if(_subview_stripable->send_name(0).size() > 0) {
|
||||
if (_subview_stripable->send_name(0).size() > 0) {
|
||||
bool more_sends = true;
|
||||
while(more_sends) {
|
||||
if(_subview_stripable->send_name(num_sends).size() > 0) {
|
||||
while (more_sends) {
|
||||
if (_subview_stripable->send_name(num_sends).size() > 0) {
|
||||
num_sends++;
|
||||
} else {
|
||||
more_sends = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if(num_sends > _current_bank + 1) {
|
||||
if (num_sends > _current_bank + 1) {
|
||||
_current_bank += 1;
|
||||
mcp().redisplay_subview_mode();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue