1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 08:07:58 +01:00

Don't trigger completion refresh on substring completion. Why did we do this to begin with?

This commit is contained in:
Kris Maglione
2008-12-16 16:47:18 -05:00
parent ff8cd3e194
commit cef689bc6e

View File

@@ -382,10 +382,7 @@ function CommandLine() //{{{
if (this.items.length > 1) if (this.items.length > 1)
{ {
if (this.substring && this.substring != this.completion) if (this.substring && this.substring != this.completion)
{
this.completion = this.substring; this.completion = this.substring;
liberator.triggerCallback("change", currentExtendedMode, commandline.command);
}
break; break;
} }
// Fallthrough // Fallthrough