summaryrefslogtreecommitdiff
path: root/gtk2_ardour/luawindow.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-03-25 01:49:14 +0100
committerRobin Gareus <robin@gareus.org>2016-03-25 01:49:14 +0100
commitc8b7d70ffab750535031836082e0103cad34da94 (patch)
tree87c9b230a0b281aa720f1b8656d0b4af9054cc64 /gtk2_ardour/luawindow.cc
parent83fdfd89f735775cffb98d38e14015fd073a20d5 (diff)
monospace font for Lua Script Window
Diffstat (limited to 'gtk2_ardour/luawindow.cc')
-rw-r--r--gtk2_ardour/luawindow.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk2_ardour/luawindow.cc b/gtk2_ardour/luawindow.cc
index 0cd9505191..c6f0031712 100644
--- a/gtk2_ardour/luawindow.cc
+++ b/gtk2_ardour/luawindow.cc
@@ -133,6 +133,9 @@ LuaWindow::LuaWindow ()
scrollout.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_ALWAYS);
scrollout.add (outtext);
+ entry.set_name ("ArdourLuaEntry");
+ outtext.set_name ("ArdourLuaEntry");
+
Gtk::HBox *hbox = manage (new HBox());
hbox->pack_start (_btn_run, false, false, 2);
@@ -192,8 +195,6 @@ void LuaWindow::reinit_lua ()
LuaInstance::register_classes (L);
luabridge::push <PublicEditor *> (L, &PublicEditor::instance());
lua_setglobal (L, "Editor");
-
-
}
void LuaWindow::set_session (Session* s)