Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a94f353b authored by Amit Kumar's avatar Amit Kumar 💻
Browse files

Merge branch 'master' into 'master'

Folder: Always show cursor when focus is changed on folder's title EditText

See merge request e/apps/BlissLauncher!56
parents e3afd08d 951c9223
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -1094,6 +1094,7 @@ public class LauncherActivity extends AppCompatActivity implements
            if (!hasFocus) {
            if (!hasFocus) {
                hideKeyboard(v);
                hideKeyboard(v);
            }
            }
            mFolderTitleInput.setCursorVisible(true);
        });
        });
        mFolderTitleInput.setOnEditorActionListener((textView, actionId, keyEvent) -> {
        mFolderTitleInput.setOnEditorActionListener((textView, actionId, keyEvent) -> {
            if (actionId == EditorInfo.IME_ACTION_DONE) {
            if (actionId == EditorInfo.IME_ACTION_DONE) {
+5 −0
Original line number Original line Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <size android:width="2dp"/>
    <solid android:color="@color/colorPrimary" />
</shape>
 No newline at end of file
+1 −0
Original line number Original line Diff line number Diff line
@@ -61,6 +61,7 @@
            android:paddingBottom="16dp"
            android:paddingBottom="16dp"
            android:text="@string/untitled"
            android:text="@string/untitled"
            android:textAlignment="center"
            android:textAlignment="center"
            android:textCursorDrawable="@drawable/folder_title_text_cursor"
            android:textColor="@android:color/white"
            android:textColor="@android:color/white"
            android:textSize="18sp" />
            android:textSize="18sp" />