Jesse Greene
Jesse Greene
P.S., if you don't mind, how can a user of Mu4 get the offset of the text like this with these changes? I'd imagine there's a way, but I'm not...
Gotcha. Thanks for the response. For some reason I was thinking at the time of the question that the appropriate x/y-offset was the score-wide one (since that's where the alignment...
What's also kind of funny now is that the .COM side profits off of this function. Quote: "Piano Keyboard - This is a premium feature, only available with MuseScore PRO...
'Twas Just an observation. But as a *user*, finding an old functionality gone and now monetized online does *feel* a bit peculiar. Surely mere coincidence. Again, good luck with re-implementation....
Nice! Was about to suggest following the mixer colors per track, but alas that apparently was never implemented into Mu4 from previous versions.
@adazem009 I'm so used to my own personal build of the 3.x branch which only includes actual sounding note-events (so that ornamentations show properly like tremolos and trills on the...
While you're up (: also, an advanced preference for grand staff differentiation coloring would be cool like this: https://github.com/musescore/MuseScore/assets/7139517/94ec927b-14c1-4a1a-9041-09dcc7539eb8 Anything else we can attempt to place upon your shoulders?
@adazem009 P.S. in Ms3.x the sequencer had a method called ```cpp void Seq::playEvent(const NPlayEvent& event, unsigned framePos) ``` A "Note Play Event" class referred to the event's actual score note...
P.S. a quick glance at the code: ```cpp PaletteRootModel::PaletteRootModel(QObject* parent) : QObject(parent) { dispatcher()->reg(this, "palette-search", [this]() { emit paletteSearchRequested(); ``` Doesn't seem to have any access to dockwidgets or whatever...
P.S. FWIW: After rebasing https://github.com/musescore/MuseScore/pull/15675 and squashing (for simplicity's sake) and then simply adding: ```cpp dispatcher()->dispatch("dock-set-open", ActionData::make_arg2("palettesPanel", true)); ``` within: ```cpp PaletteRootModel::PaletteRootModel(QObject* parent) : QObject(parent) { dispatcher()->reg(this, "palette-search", [this]() {...