From f9b423604eca5fcaa1fbd7edc0c9ef79977f58e7 Mon Sep 17 00:00:00 2001 From: Peter Schmidt Date: Wed, 5 Oct 2016 11:07:11 -0400 Subject: [PATCH] INT-1827: Always hide the status bar in the connect window So the React status bar component doesn't intercept touch events which is really confusing to the user as it is also transparent at this time. --- src/app/connect/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/connect/index.js b/src/app/connect/index.js index b10c7fd2e3e..063fbf59964 100644 --- a/src/app/connect/index.js +++ b/src/app/connect/index.js @@ -439,8 +439,9 @@ var ConnectView = View.extend({ }; connection.test(function(err) { + // Always hide the status bar while we're moving to React components + StatusAction.hide(); if (!err) { - StatusAction.hide(); // now save connection this.connection = connection; this.connection.save({ last_used: new Date() }, { success: onSave.bind(this) });