Index: chrome/content/ui/filters-filterview.js |
=================================================================== |
--- a/chrome/content/ui/filters-filterview.js |
+++ b/chrome/content/ui/filters-filterview.js |
@@ -657,16 +657,22 @@ var FilterView = |
let columns = this.boxObject.columns; |
for (let i = 0; i < columns.length; i++) |
if (columns[i].element.hasAttribute("sortDirection")) |
this.sortBy(columns[i].id, columns[i].element.getAttribute("sortDirection")); |
this.refresh(true); |
} |
+ |
+ // Stop propagation of keypress events so that these aren't intercepted by |
+ // the findbar. |
+ this.treeElement.inputField.addEventListener("keypress", event => { |
+ event.stopPropagation() |
Thomas Greiner
2015/11/09 14:43:41
Detail: Missing semicolon.
Wladimir Palant
2015/11/09 15:03:49
Fixed in the patch I pushed.
|
+ }, false); |
}, |
selection: null, |
get rowCount() this.data.length, |
getCellText: function(row, col) |
{ |