# File lib/Borges/Component/ToolFrame.rb, line 38
  def render_toolbar_on(r)
    r.divNamed_with('toolbar',
    proc do
      self.actions.each do |ea|
        r.anchorOn_of(ea, self)
        r.space
      end

      self.tools.each do |ea|
        r.anchorWithAction_text(proc do
          self.openTool(ea)
        end, ea.linkText)
        r.space
      end
      r.space
      r.text(self.session.footprint)
    end)
  end