mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
Trigger clip picker: add apple loop paths
This commit is contained in:
parent
d06a70a10a
commit
658d8c512e
1 changed files with 10 additions and 0 deletions
|
|
@ -59,6 +59,16 @@ TriggerClipPicker::TriggerClipPicker ()
|
||||||
, _seeking (false)
|
, _seeking (false)
|
||||||
{
|
{
|
||||||
/* Setup Dropdown / File Browser */
|
/* Setup Dropdown / File Browser */
|
||||||
|
#ifdef __APPLE__
|
||||||
|
try {
|
||||||
|
/* add_shortcut_folder throws an exception if the folder being added already has a shortcut */
|
||||||
|
_fcd.add_shortcut_folder_uri ("file:///Library/GarageBand/Apple Loops");
|
||||||
|
_fcd.add_shortcut_folder_uri ("file:///Library/Audio/Apple Loops");
|
||||||
|
_fcd.add_shortcut_folder_uri ("file:///Library/Application Support/GarageBand/Instrument Library/Sampler/Sampler Files");
|
||||||
|
}
|
||||||
|
catch (Glib::Error & e) {}
|
||||||
|
#endif
|
||||||
|
|
||||||
Gtkmm2ext::add_volume_shortcuts (_fcd);
|
Gtkmm2ext::add_volume_shortcuts (_fcd);
|
||||||
|
|
||||||
_fcd.add_button (Stock::CANCEL, RESPONSE_CANCEL);
|
_fcd.add_button (Stock::CANCEL, RESPONSE_CANCEL);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue