Category in editor not clickable

Signed-off-by: map-per <map-per@gmx.de>
This commit is contained in:
map-per 2024-12-16 19:21:04 +01:00 committed by Konstantin Pastbin
parent 7762c66901
commit 693e1aa5d0
3 changed files with 1 additions and 14 deletions

View file

@ -406,7 +406,6 @@ public class EditorFragment extends BaseMwmFragment implements View.OnClickListe
private void initViews(View view)
{
final View categoryBlock = view.findViewById(R.id.category);
categoryBlock.setOnClickListener(this);
// TODO show icon and fill it when core will implement that
UiUtils.hide(categoryBlock.findViewById(R.id.icon));
mCategory = categoryBlock.findViewById(R.id.name);
@ -536,8 +535,6 @@ public class EditorFragment extends BaseMwmFragment implements View.OnClickListe
mParent.editStreet();
else if (id == R.id.block_cuisine)
mParent.editCuisine();
else if (id == R.id.category)
mParent.editCategory();
else if (id == R.id.more_names || id == R.id.show_additional_names)
{
if (!mNamesAdapter.areAdditionalLanguagesShown() || validateNames())

View file

@ -261,16 +261,6 @@ public class EditorHostFragment extends BaseMwmToolbarFragment implements View.O
.commit();
}
protected void editCategory()
{
if (!mIsNewObject)
return;
final Activity host = requireActivity();
host.finish();
startActivity(new Intent(host, FeatureCategoryActivity.class));
}
private void showSearchControls(boolean showSearch)
{
((SearchToolbarController) getToolbarController()).showSearchControls(showSearch);

View file

@ -26,7 +26,7 @@
style="@style/MwmWidget.Editor.CardView">
<RelativeLayout
android:id="@+id/category"
style="@style/MwmWidget.Editor.MetadataBlock.Clickable"
style="@style/MwmWidget.Editor.MetadataBlock"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="0dp"