Andrew Auclair
Andrew Auclair
Try catching it and calling `message()` to see what the actual error is. Unlike `std::exception`, `Poco::Exception` doesn't give the message in the `what()` function, just the name. `what()` is the...
`Poco::format` wraps the C++ streams which don't have an equivalent for this flag. That makes this a pretty difficult feature to implement in Poco. Simply adding a space to that...
I can change it back and throw exceptions in places that poco calls available. If that's what you want. I do feel that the exception forces the issue better. But...
If you want a modern maintained Java Swing docking framework, check out Modern Docking. I've been building the framework the last few years and it has several active users (myself...
I didn't really have a plan for what to change or how atm. It was just interesting to finally find a setup where the setup/system didn't support transparency. I knew...
Played around with this for a while and reducing the number of repaint helps. I'm wondering if it's because I'm on an old laptop with integrated graphics. I'm sure that...
~~This will be fixed with the overlay refactor and was finally achieved by using a `BufferStrategy` instead of manually repainting the `JFrame`.~~ This didn't work out in the end. Need...
Interesting. That is the exact behavior I've seen on Arch. Maybe integrated graphics is the common issue. I had found a fix for it, but it broke the windows side...
> Maybe it's an issue with Gnome rather than integrated graphics? The person in the SO question mentions having "nvidia drivers", so he most likely has dedicated graphics. > >...
> Maybe integrated graphics is the common issue. Good news. I finally had the time and energy to fix this. I believe I have a working solution. The common issue...