commit
809ca28ab7
@ -35,6 +35,6 @@ public class VisitWebsiteActionButton extends ItemActionButton {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getVisibility() {
|
public int getVisibility() {
|
||||||
return (item.getLink() != null) ? View.INVISIBLE : View.VISIBLE;
|
return (item.getLink() == null) ? View.INVISIBLE : View.VISIBLE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -286,7 +286,7 @@ public class ItemFragment extends Fragment {
|
|||||||
butAction2Text.setTransformationMethod(null);
|
butAction2Text.setTransformationMethod(null);
|
||||||
getContext().getTheme().resolveAttribute(actionButton2.getDrawable(), typedValue, true);
|
getContext().getTheme().resolveAttribute(actionButton2.getDrawable(), typedValue, true);
|
||||||
butAction2Icon.setImageResource(typedValue.resourceId);
|
butAction2Icon.setImageResource(typedValue.resourceId);
|
||||||
butAction2.setVisibility(actionButton1.getVisibility());
|
butAction2.setVisibility(actionButton2.getVisibility());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -349,11 +349,11 @@
|
|||||||
|
|
||||||
<!-- Preferences -->
|
<!-- Preferences -->
|
||||||
<string name="storage_pref">Storage</string>
|
<string name="storage_pref">Storage</string>
|
||||||
<string name="storage_sum">Episode auto delete, Export, Import</string>
|
<string name="storage_sum">Episode auto delete, Import, Export</string>
|
||||||
<string name="project_pref">Project</string>
|
<string name="project_pref">Project</string>
|
||||||
<string name="queue_label">Queue</string>
|
<string name="queue_label">Queue</string>
|
||||||
<string name="integrations_label">Integrations</string>
|
<string name="integrations_label">Integrations</string>
|
||||||
<string name="integrations_sum">External services</string>
|
<string name="integrations_sum">Synchronization</string>
|
||||||
<string name="automation">Automation</string>
|
<string name="automation">Automation</string>
|
||||||
<string name="download_pref_details">Details</string>
|
<string name="download_pref_details">Details</string>
|
||||||
<string name="import_export_pref">Import/Export</string>
|
<string name="import_export_pref">Import/Export</string>
|
||||||
@ -487,7 +487,7 @@
|
|||||||
<string name="pref_smart_mark_as_played_disabled">Disabled</string>
|
<string name="pref_smart_mark_as_played_disabled">Disabled</string>
|
||||||
<string name="pref_image_cache_size_title">Image Cache Size</string>
|
<string name="pref_image_cache_size_title">Image Cache Size</string>
|
||||||
<string name="pref_image_cache_size_sum">Size of the disk cache for images.</string>
|
<string name="pref_image_cache_size_sum">Size of the disk cache for images.</string>
|
||||||
<string name="visit_user_forum">Visit user forum</string>
|
<string name="visit_user_forum">User forum</string>
|
||||||
<string name="bug_report_title">Report bug</string>
|
<string name="bug_report_title">Report bug</string>
|
||||||
<string name="open_bug_tracker">Open bug tracker</string>
|
<string name="open_bug_tracker">Open bug tracker</string>
|
||||||
<string name="export_logs">Export logs</string>
|
<string name="export_logs">Export logs</string>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user