mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-31 02:15:47 +01:00
fixed showmode handling for muttator composer
This commit is contained in:
@@ -649,12 +649,12 @@ function CommandLine() //{{{
|
||||
where = setMultiline;
|
||||
else if (flags & this.FORCE_SINGLELINE)
|
||||
where = function () setLine(str, highlightGroup, true);
|
||||
else if (!outputContainer.collapsed)
|
||||
else if (flags & this.DISALLOW_MULTILINE)
|
||||
{
|
||||
if (flags & this.DISALLOW_MULTILINE)
|
||||
if (!outputContainer.collapsed)
|
||||
where = null;
|
||||
else
|
||||
where = setMultiline;
|
||||
where = function () setLine(str, highlightGroup, true);
|
||||
}
|
||||
else if (/\n|<br\/?>/.test(str))
|
||||
where = setMultiline;
|
||||
|
||||
Reference in New Issue
Block a user