Skip to content

Commit 4a137b8

Browse files
committed
Backport INT-1827: Always hide the status bar in the connect window (#507)
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.
1 parent 57a3d2c commit 4a137b8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/connect/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,8 +439,9 @@ var ConnectView = View.extend({
439439
};
440440

441441
connection.test(function(err) {
442+
// Always hide the status bar while we're moving to React components
443+
StatusAction.hide();
442444
if (!err) {
443-
StatusAction.hide();
444445
// now save connection
445446
this.connection = connection;
446447
this.connection.save({ last_used: new Date() }, { success: onSave.bind(this) });

0 commit comments

Comments
 (0)