Jannis Weis
Jannis Weis
The issue most likely comes from keybindings the likes of `ctrl c` being used while on mac they should be `cmd c`. Control and command are different keycodes in swing....
Oh nice. I had to deal with this problem in Java 8. Still trying to catch up with the various awt/swing apis introduced in newer versions.
We absolutely should rethink the current shortcuts. When implementing #68 I‘ll add some sort of scaffold of the current available actions. Then we can have a better overview of what...
Negative coordinates in `viewBox` effectively shift the coordinat system used for resolving geometry bounds. It effectively effects like a translation e.g. if `viewBox="x y w h"` Then this would be...
JSVG doesn't own the painting context the way Batik does, hence there is nothing on the library side to repaint if a property changes. An implementation would have to manually...
Yes that are some left over debugging remains. I have already fixed it locally but didn’t push the changes yet due to some unfinished other changes.
I am not sure about this either. Though you can short-circuit the issue by removing the dependency and uncommenting the two lines here: https://github.com/weisJ/darklaf/blob/0622af33ba287b33f415e062158dfe4cc7b0d763/macos/build.gradle.kts#L44
Looks like the `jdk.swing.interop.SwingInterOpUtils` class isn’t found (though it should exists) https://github.com/weisJ/darklaf/blob/master/compatibility/src/main/java/com/github/weisj/darklaf/compatibility/SwingUtil.java In theory the library is fully compatible with the module system (and Java 17 in particular)
Sadly it isn't possible to not use either. `jdk.swing.interop.SwingInterOpUtils` should be available from Java 11 and onwards. On versions before that `sun.awt.SunToolkit` has to be used instead. The classes are...
I have decided to drop support of Java 8 with the next version. The new minimum versions requirement will be Java 17. I don't find as much time as I...