Don't assume bank title is the same as search str because it truncates text
This commit is contained in:
@@ -240,7 +240,7 @@ public class TabInterface
|
||||
}
|
||||
|
||||
Widget bankTitle = client.getWidget(WidgetInfo.BANK_TITLE_BAR);
|
||||
if (bankTitle != null && !bankTitle.isHidden())
|
||||
if (bankTitle != null && !bankTitle.isHidden() && !str.startsWith(TAG_SEARCH))
|
||||
{
|
||||
str = bankTitle.getText().replaceFirst("Showing items: ", "");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user