13
0

locations pane: hide CD checkbox for Cue Markers

This commit is contained in:
Ben Loftis 2022-01-06 18:33:51 -06:00
parent e9081b0b7c
commit 32880e0cdd

View File

@ -295,6 +295,10 @@ LocationEditRow::set_location (Location *loc)
remove_button.set_sensitive (false);
}
if (location->is_cue_marker()) {
cd_check_button.set_sensitive (false);
}
cd_check_button.set_active (location->is_cd_marker());
cd_check_button.show();