A matter of focus

This commit is contained in:
M66B
2019-07-01 15:55:15 +02:00
parent e8aa4d3f7d
commit 44fa9c4ce0
7 changed files with 20 additions and 21 deletions

View File

@@ -853,8 +853,6 @@ public class FragmentIdentity extends FragmentBase {
color = (identity == null || identity.color == null ? Color.TRANSPARENT : identity.color);
etName.requestFocus();
if (identity == null)
new SimpleTask<Integer>() {
@Override
@@ -1110,13 +1108,6 @@ public class FragmentIdentity extends FragmentBase {
etHtml = dview.findViewById(R.id.etHtml);
etHtml.setText(html);
new Handler().post(new Runnable() {
@Override
public void run() {
etHtml.requestFocus();
}
});
return new AlertDialog.Builder(getContext())
.setTitle(R.string.title_edit_html)
.setView(dview)