Disabled inlining in bytecode tool window by default.

It produces exceptions when inlined function is defined in other file.
This commit is contained in:
Evgeny Gerashchenko
2014-08-06 15:39:39 +04:00
parent 44084de3be
commit ff2e2d0203
@@ -196,7 +196,7 @@ public class KotlinBytecodeToolWindow extends JPanel implements Disposable {
add(optionPanel, BorderLayout.NORTH);
/*TODO: try to extract default parameter from compiler options*/
enableInline = new JCheckBox("Enable inline", true);
enableInline = new JCheckBox("Enable inline", false);
enableOptimization = new JCheckBox("Enable optimization", true);
optionPanel.add(enableInline, BorderLayout.WEST);
optionPanel.add(enableOptimization, BorderLayout.CENTER);