Giusy Digital
Giusy Digital
Are you sure this is working? I tested the loopback at that time on my stereo stream and I got no output. Which distribution are you using?
> > @JohnyPeaN are you using #1171? As far as I remember, it was working to me, but then Pipewire upgraded and I was not able to get it working...
Something like [this](https://doc.qt.io/archives/4.6/designer-quick-start.html). Very difficult to implement in GTK. I've seen it in some KDE widgets, but I think it's not a specific Qt widget, maybe a spinbutton combined with...
This is very difficult to implement and will complicate things out. Every spinbox has two level of adjustment. With up/down arrow you can adjust by 0,01 and with pagup/pagdown on...
Is there no easy way to remove the +/- buttons?
Doing number formatting is a pain. Spinbuttons at least know about system locale and behaves accordingly. With GtkEntry we should get system locale every time before formatting. It's doable, but...
We have an APO format import feature. Could you do it in APO format? Its syntax is not too hard to write. Maybe from the documentation is seems hard: https://sourceforge.net/p/equalizerapo/wiki/Configuration%20reference/...
> Also autoeq imported files are not sorted by freq so It is a little bit counterintuitive to adapt a bit high or low frequencies searching for the right column....
It's hard to sort them there because we scan the file line by line. It's easier if you edit the file manually.
Nice. Since we try to adhere to C++20, maybe it's better to overload `` Then add the sort after the empty check. ```c++ eq_file.close(); if (bands.empty()) { return false; }...