mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-07 13:04:12 +01:00
Add crude CSS property completion.
This commit is contained in:
@@ -279,10 +279,11 @@ const CompletionContext = Class("CompletionContext", {
|
||||
delete this.cache.filtered;
|
||||
delete this.cache.filter;
|
||||
this.cache.rows = [];
|
||||
this.hasItems = items.length > 0;
|
||||
this._completions = items;
|
||||
this.itemCache[this.key] = items;
|
||||
}
|
||||
if (this._completions)
|
||||
this.hasItems = this._completions.length > 0;
|
||||
if (this.updateAsync && !this.noUpdate)
|
||||
util.callInMainThread(function () { this.onUpdate(); }, this);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user