Commit e136ab96 authored by Anton Makeev's avatar Anton Makeev Committed by Dennis Ushakov
Browse files

Platform: npe in MacMessages

parent 2b86d689
Showing with 1 addition and 1 deletion
+1 -1
......@@ -444,7 +444,7 @@ public class MacMessagesImpl extends MacMessages {
// TODO: state=!doNotAsk.shouldBeShown()
? "-1"
: doNotAskDialogOption.getDoNotShowMessage()),
nsString(!doNotAskDialogOption.isToBeShown()? "checked" : "-1"), null);
nsString(doNotAskDialogOption != null && !doNotAskDialogOption.isToBeShown() ? "checked" : "-1"), null);
IdeFocusManager.getGlobalInstance().setTypeaheadEnabled(false);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment