markblinkhorn
markblinkhorn
I should add (for completeness) that the Quickchart build *does* work on 2021-05-07-raspios-buster-arm64-lite - but my project doesn't...
@bomm I have made some modifications to fluidsynth.py, mainly to correct a problem affecting it running on 64-bit Windows, but it might just help with the segfaults that you have...
Shuffling the order of the conditional statements in easy_abc.py (at line 1400 onwards) does resolve this issue - but only if you are running the Python directly: ```python # 1.3.6...
Update: latest version of abc2midi has same problem ```typescript C:\Users\markb.SMBCONSULT\EasyABC\bin>abc2midi.exe temp.abc -o fred.midi -BF -TT 440 afreq = 440.000000 semitone_shift = 0.000000 bend = 8192 4.91 March 02 2024 abc2midi...
Edit: Not just print to PDF - Actual print copy (direct to printer) also renders black
@revad All that happens when I drag a selection rectangle over a bunch of notes is a yellow box which disappears when I release the mouse button. No notes are...
An observation - I'm not sure whether it will help anyone or not. The following code fragment does not produce any output when notes are drag selected: ```python def select_notes(self,...
@revad Ah, so a pointer to the .Contains method then - I can see why it isn't false. You are probably on to something with the Python versions. Shame it...
@revad Did you know x and y are floats? This works: ```python selected_offsets = set((abc_row, abc_col) for (x, y, abc_row, abc_col, desc) in self.notes if in_selection((int(x), int(y)))) ```
I wondered that too - it would fix the problem at source, which is always preferable. As you say, a wide-reaching change...