fix: use correct default PDF mode

This commit is contained in:
Johannes Frohnmeyer 2024-05-29 14:50:10 +02:00
parent 5e8ceffc69
commit 13c1b75640
Signed by: Johannes
GPG Key ID: E76429612C2929F4

View File

@ -8,7 +8,7 @@ import com.intellij.openapi.components.*
class SDSettings : SimplePersistentStateComponent<SDSettings.SDState>(SDState()) {
class SDState : BaseState() {
var url by string("https://domjudge.iti.kit.edu/main/api/v4")
var pdfMode by enum<PdfMode>(PdfMode.INTERNAL_FILE)
var pdfMode by enum<PdfMode>(PdfMode.INTERNAL_MEMORY)
}
companion object {