monospace font for Lua Script Window
authorRobin Gareus <robin@gareus.org>
Fri, 25 Mar 2016 00:49:14 +0000 (01:49 +0100)
committerRobin Gareus <robin@gareus.org>
Fri, 25 Mar 2016 00:49:14 +0000 (01:49 +0100)
gtk2_ardour/clearlooks.rc.in
gtk2_ardour/luawindow.cc

index 3422a8e040bd9836bd9e9bc9a12da114542fc13b..24acda34d960831b77ba935df5a9e32392219d5c 100644 (file)
@@ -1170,6 +1170,7 @@ widget "*AddRouteDialogNameTemplateEntry" style:highest "medium_bold_entry"
 widget "*NewSessionSR1Label" style:highest "red_medium_text"
 widget "*NewSessionSR2Label" style:highest "medium_text"
 widget "*location edit row clock" style:highest "medium_text"
+widget "*ArdourLuaEntry" style:highest "medium_monospace_text"
 widget "*LocationEditNameLabel" style:highest "medium_text"
 widget "*LocationEditCdButton" style:highest "small_red_active_and_selected_button"
 widget "*LocationEditCdButton*" style:highest "small_red_active_and_selected_button"
index 0cd9505191eea9905eae5028c53247b348f8c365..c6f003171287577ba1b80c1e7c9ff9cfd50babf3 100644 (file)
@@ -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)