NO-OP: fix typo in method name
This commit is contained in:
parent
305b2778b4
commit
bff0f174da
@ -1612,7 +1612,7 @@ LuaInstance::interactive_add (Gtk::Window& parent, LuaScriptInfo::ScriptType typ
|
|||||||
|
|
||||||
ScriptParameterDialog spd (_("Set Script Parameters"), spi, reg, lsp);
|
ScriptParameterDialog spd (_("Set Script Parameters"), spi, reg, lsp);
|
||||||
|
|
||||||
if (spd.need_interation ()) {
|
if (spd.need_interaction ()) {
|
||||||
switch (spd.run ()) {
|
switch (spd.run ()) {
|
||||||
case Gtk::RESPONSE_ACCEPT:
|
case Gtk::RESPONSE_ACCEPT:
|
||||||
break;
|
break;
|
||||||
|
@ -258,7 +258,7 @@ ScriptParameterDialog::ScriptParameterDialog (std::string title,
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
ScriptParameterDialog::need_interation () const
|
ScriptParameterDialog::need_interaction () const
|
||||||
{
|
{
|
||||||
if (!parameters_ok ()) {
|
if (!parameters_ok ()) {
|
||||||
return true;
|
return true;
|
||||||
|
@ -66,7 +66,7 @@ class ScriptParameterDialog : public ArdourDialog
|
|||||||
public:
|
public:
|
||||||
ScriptParameterDialog (std::string title, const ARDOUR::LuaScriptInfoPtr&, const std::vector<std::string>&, ARDOUR::LuaScriptParamList&);
|
ScriptParameterDialog (std::string title, const ARDOUR::LuaScriptInfoPtr&, const std::vector<std::string>&, ARDOUR::LuaScriptParamList&);
|
||||||
std::string name () { return _name_entry.get_text (); }
|
std::string name () { return _name_entry.get_text (); }
|
||||||
bool need_interation () const;
|
bool need_interaction () const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void update_sensitivity ();
|
void update_sensitivity ();
|
||||||
|
Loading…
Reference in New Issue
Block a user