mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
First stage of options rework.
- Split Configuration into RCConfiguration and SessionConfiguration; the first for options which are saved to .rc files and the second for options which are saved in a session file. - Move some options from the old `master' Configuration object into SessionConfiguration; this needs more refinement. - Reflect many RCConfiguration options in an expanded Edit->Preferences dialog; my intention is to remove the corresponding menu items eventually. git-svn-id: svn://localhost/ardour2/branches/3.0@5075 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
0569107ddc
commit
015fc7b39f
65 changed files with 848 additions and 2414 deletions
|
|
@ -220,13 +220,13 @@ BasicUI::toggle_all_rec_enables ()
|
|||
void
|
||||
BasicUI::toggle_punch_in ()
|
||||
{
|
||||
Config->set_punch_in (!Config->get_punch_in());
|
||||
session->config.set_punch_in (!session->config.get_punch_in());
|
||||
}
|
||||
|
||||
void
|
||||
BasicUI::toggle_punch_out ()
|
||||
{
|
||||
Config->set_punch_out (!Config->get_punch_out());
|
||||
session->config.set_punch_out (!session->config.get_punch_out());
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue