From 8ef280727c12744997d48de44533cee25b93f775 Mon Sep 17 00:00:00 2001 From: Vladimir Krivosheev Date: Wed, 6 Dec 2017 15:15:26 +0100 Subject: [PATCH] fix AppletConfigurationOptions defaults values (as before) --- .../intellij/execution/applet/AppletConfigurationOptions.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/execution/impl/src/com/intellij/execution/applet/AppletConfigurationOptions.kt b/java/execution/impl/src/com/intellij/execution/applet/AppletConfigurationOptions.kt index 18c30ecca942..ba08da39bd86 100644 --- a/java/execution/impl/src/com/intellij/execution/applet/AppletConfigurationOptions.kt +++ b/java/execution/impl/src/com/intellij/execution/applet/AppletConfigurationOptions.kt @@ -11,8 +11,8 @@ class AppletConfigurationOptions : ModuleBasedConfigurationOptions() { @get:OptionTag("HTML_FILE_NAME") var htmlFileName by string() @get:OptionTag("HTML_USED") var htmlUsed by storedProperty(false) - @get:OptionTag("WIDTH") var width by storedProperty(300) - @get:OptionTag("HEIGHT") var height by storedProperty(400) + @get:OptionTag("WIDTH") var width by storedProperty(400) + @get:OptionTag("HEIGHT") var height by storedProperty(300) @get:OptionTag("POLICY_FILE") var policyFile by string() @get:OptionTag("VM_PARAMETERS") var vmParameters by string()