esteinberg / plantuml4idea

Intellij IDEA plugin for PlantUML
Apache License 2.0
633 stars 113 forks source link

Save dialog does not open in IntelliJ Beta 2024.2 #426

Open uhafner opened 4 months ago

uhafner commented 4 months ago

I recently tried the EAP IntelliJ Beta 2 2024.2 installation. When I open a plantUML diagram, then the save button does not work anymore: when I press save then no dialog opens. I do not find an exception in the log. When I switch back to 2024.1 then everything works like a charm.

krasa commented 4 months ago

works fine for me on win 10

uhafner commented 4 months ago

I'm running it on macOS Sonoma. It worked with one of the older EAP builds, I think the first beta broke it on my side. Besides from looking in the log, is there a way to help finding the problem on my side?

krasa commented 4 months ago

you could debug the plugin or try if similar things work, like Main Menu | File | Open...

krasa commented 4 months ago

https://youtrack.jetbrains.com/issue/DBE-19677/DataGrip-not-opening-file-folder-dialogs-on-Mac

uhafner commented 3 months ago

As a workaround, you need to specify those two properties (in the file idea.vmoptions) before starting IntelliJ:

-Dide.mac.file.chooser.native=false
-Dide.mac.native.save.dialog=false

Maybe it makes sense to add this to the FAQ or documenation?

nan-www commented 2 months ago

As a workaround, you need to specify those two properties (in the file idea.vmoptions) before starting IntelliJ:

-Dide.mac.file.chooser.native=false
-Dide.mac.native.save.dialog=false

Maybe it makes sense to add this to the FAQ or documenation?

Thanks a lot. It works on mac OS.

las-nish commented 2 months ago

As a workaround, you need to specify those two properties (in the file idea.vmoptions) before starting IntelliJ:

-Dide.mac.file.chooser.native=false
-Dide.mac.native.save.dialog=false

Maybe it makes sense to add this to the FAQ or documenation?

You saved my day. It works on my Mac Ventura 13.5. Thank you