QUOTING_MAX_DEPTH=1 for transitory compatibility with older versions. QUOTE_MAX_DEPTH=7 for performance testing and hiding of a rerendering bug occuring when two adjacent messages are merged.
This commit is contained in:
parent
c81c8a62b3
commit
3921f3a940
|
@ -203,7 +203,7 @@ public final class Config {
|
||||||
}
|
}
|
||||||
|
|
||||||
// How deep nested quotes should be displayed. '2' means one quote nested in another.
|
// How deep nested quotes should be displayed. '2' means one quote nested in another.
|
||||||
public static final int QUOTE_MAX_DEPTH = 3;
|
public static final int QUOTE_MAX_DEPTH = 7;
|
||||||
// How deep nested quotes should be created on quoting a message.
|
// How deep nested quotes should be created on quoting a message.
|
||||||
public static final int QUOTING_MAX_DEPTH = QUOTE_MAX_DEPTH;
|
public static final int QUOTING_MAX_DEPTH = 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue