mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
add missing "Path" to label, re-order VST preferences
This commit is contained in:
parent
c123829c0a
commit
0524f1ec14
1 changed files with 7 additions and 7 deletions
|
|
@ -1060,6 +1060,13 @@ public:
|
|||
Gtkmm2ext::UI::instance()->set_tip (_discover_vst_on_start,
|
||||
_("<b>When enabled</b> new VST plugins are searched, tested and added to the cache index on application start. When disabled new plugins will only be available after triggering a 'Scan' manually"));
|
||||
|
||||
#ifdef LXVST_SUPPORT
|
||||
t->attach (*manage (left_aligned_label (_("Linux VST Path:"))), 0, 1, n, n+1);
|
||||
b = manage (new Button (_("Edit")));
|
||||
b->signal_clicked().connect (sigc::mem_fun (*this, &PluginOptions::edit_lxvst_path_clicked));
|
||||
t->attach (*b, 1, 2, n, n+1, FILL); ++n;
|
||||
#endif
|
||||
|
||||
#ifdef WINDOWS_VST_SUPPORT
|
||||
t->attach (*manage (left_aligned_label (_("Windows VST Path:"))), 0, 1, n, n+1);
|
||||
b = manage (new Button (_("Edit")));
|
||||
|
|
@ -1067,13 +1074,6 @@ public:
|
|||
t->attach (*b, 1, 2, n, n+1, FILL); ++n;
|
||||
#endif
|
||||
|
||||
#ifdef LXVST_SUPPORT
|
||||
t->attach (*manage (left_aligned_label (_("Linux VST:"))), 0, 1, n, n+1);
|
||||
b = manage (new Button (_("Edit")));
|
||||
b->signal_clicked().connect (sigc::mem_fun (*this, &PluginOptions::edit_lxvst_path_clicked));
|
||||
t->attach (*b, 1, 2, n, n+1, FILL); ++n;
|
||||
#endif
|
||||
|
||||
_box->pack_start (*t,true,true);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue