Just created a new library (very simple list...just 3 text fields). I can add entries from the Android app but when I open the library in the Windows desktop app and click the "+" button, I get the entry window but, simultaneously, I get a window that just says "Error." When I click "show details," I get the following:
java.lang.NullPointerException
at com.sun.glass.ui.win.WinAccessible.get_DocumentRange(WinAccessible.java:1355)
at com.sun.glass.ui.win.WinApplication._enterNestedEventLoopImpl(Native Method)
at com.sun.glass.ui.win.WinApplication._enterNestedEventLoop(WinApplication.java:205)
at com.sun.glass.ui.Application.enterNestedEventLoop(Application.java:515)
at com.sun.glass.ui.EventLoop.enter(EventLoop.java:107)
at com.sun.javafx.tk.quantum.QuantumToolkit.enterNestedEventLoop(QuantumToolkit.java:634)
at javafx.stage.Stage.showAndWait(Stage.java:474)
at javafx.scene.control.HeavyweightDialog.showAndWait(HeavyweightDialog.java:162)
at javafx.scene.control.Dialog.showAndWait(Dialog.java:341)
at com.luckydroid.mementofx.MementoApp.lambda$null$0(MementoApp.java:100)
at com.sun.javafx.application.PlatformImpl.lambda$null$5(PlatformImpl.java:295)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.javafx.application.PlatformImpl.lambda$runLater$6(PlatformImpl.java:294)
at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
at com.sun.glass.ui.win.WinApplication.lambda$null$3(WinApplication.java:178)
at java.lang.Thread.run(Thread.java:750)
When I click on "OK" from the error window, the whole app immediately shuts down. I have the newest version of both the Android and Desktop version and am running Win10. If it's relevant, I created the library in the desktop app. If I open an existing entry in the desktop app, I can edit that just fine.
Any thoughts?