Hello!
I was testing the package and it seems the Border tool doesn't work with drummode.
This is the code I tried:
\version "2.19.82"
\include "oll-core/package.ily"
\loadPackage \with {
modules = frames
}
analysis
% Works in Normal Staff
\score {
\new Staff{
\relative c' {
\genericFrame {
c8 e g c g e e4
}
}
}
}
% Does not work in Drum Staff
\score {
\new DrumStaff{
\drummode {
\genericFrame {
sn16 8 toml16~ 16 16 8
sn 8 8 toml8 8
}
}
}
}