File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
app/src/main/java/fr/free/nrw/commons/auth Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -131,6 +131,12 @@ public void onCreate(Bundle savedInstanceState) {
131
131
usernameEdit .addTextChangedListener (textWatcher );
132
132
passwordEdit .addTextChangedListener (textWatcher );
133
133
twoFactorEdit .addTextChangedListener (textWatcher );
134
+
135
+ if (ConfigUtils .isBetaFlavour ()) {
136
+ loginCredentials .setText (getString (R .string .login_credential ));
137
+ } else {
138
+ loginCredentials .setVisibility (View .GONE );
139
+ }
134
140
}
135
141
136
142
@ OnFocusChange (R .id .login_username )
@@ -173,12 +179,6 @@ void skipLogin() {
173
179
})
174
180
.setNegativeButton (R .string .no , (dialog , which ) -> dialog .cancel ())
175
181
.show ();
176
-
177
- if (ConfigUtils .isBetaFlavour ()) {
178
- loginCredentials .setText (getString (R .string .login_credential ));
179
- } else {
180
- loginCredentials .setVisibility (View .GONE );
181
- }
182
182
}
183
183
184
184
@ OnClick (R .id .forgot_password )
You can’t perform that action at this time.
0 commit comments