merge fx-team to mozilla-central a=merge

This commit is contained in:
Carsten "Tomcat" Book
2014-09-30 15:10:47 +02:00
270 changed files with 5977 additions and 3593 deletions

View File

@@ -275,6 +275,11 @@ class JavaPanZoomController
} else if (MESSAGE_TOUCH_LISTENER.equals(event)) {
int tabId = message.getInt("tabID");
final Tab tab = Tabs.getInstance().getTab(tabId);
// Make sure we still have a Tab
if (tab == null) {
return;
}
tab.setHasTouchListeners(true);
mTarget.post(new Runnable() {
@Override