Skip to content

Commit

Permalink
removed option to change client id after login
Browse files Browse the repository at this point in the history
  • Loading branch information
n0rc committed Jul 16, 2023
1 parent 4c4e681 commit 9d6f10e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 33 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1364,12 +1364,6 @@ public void doDrawer() {
drawerSubList.addHeaderView(header, null, false);
((TextView) header.findViewById(R.id.name)).setText(Authentication.name);

header.findViewById(R.id.change_client_id).setOnClickListener(new OnSingleClickListener() {
@Override
public void onSingleClick(View view) {
changeClientId();
}
});
header.findViewById(R.id.multi).setOnClickListener(new OnSingleClickListener() {
@Override
public void onSingleClick(View view) {
Expand Down
27 changes: 0 additions & 27 deletions app/src/main/res/layout/drawer_loggedin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -155,33 +155,6 @@
android:textStyle="bold"/>
</LinearLayout>

<LinearLayout
android:id="@+id/change_client_id"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="?android:selectableItemBackground"
android:orientation="horizontal"
android:paddingStart="0dp">

<ImageView
android:layout_width="26dp"
android:layout_height="match_parent"
android:layout_marginEnd="26dp"
android:layout_marginStart="16dp"
android:tint="#fff"
app:srcCompat="@drawable/ic_lock" />

<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:text="@string/drawer_change_client_id"

android:textColor="#fff"
android:textSize="14sp"
android:textStyle="bold" />
</LinearLayout>

<LinearLayout
android:id="@+id/add"
android:layout_width="match_parent"
Expand Down

0 comments on commit 9d6f10e

Please sign in to comment.