mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-66690 Made "Ignore whitespace differences in annotations" setting "false" for PyCharm by default (and "true" for other products)
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
package org.jetbrains.idea.svn;
|
||||
|
||||
import com.intellij.openapi.util.SystemInfo;
|
||||
import com.intellij.util.PlatformUtils;
|
||||
import com.intellij.util.xmlb.annotations.*;
|
||||
import org.jetbrains.idea.svn.api.Depth;
|
||||
|
||||
@@ -75,7 +76,7 @@ public class SvnConfigurationState {
|
||||
public boolean UPDATE_LOCK_ON_DEMAND;
|
||||
public boolean IGNORE_SPACES_IN_MERGE;
|
||||
public boolean CHECK_NESTED_FOR_QUICK_MERGE;
|
||||
public boolean IGNORE_SPACES_IN_ANNOTATE = true;
|
||||
public boolean IGNORE_SPACES_IN_ANNOTATE = !PlatformUtils.isPyCharm();
|
||||
public boolean SHOW_MERGE_SOURCES_IN_ANNOTATE = true;
|
||||
public boolean FORCE_UPDATE;
|
||||
public boolean IGNORE_EXTERNALS;
|
||||
|
||||
Reference in New Issue
Block a user