Skip to content

Commit

Permalink
disable zoom-into for all string lookups
Browse files Browse the repository at this point in the history
  • Loading branch information
teosarca committed May 26, 2017
1 parent 5604fe2 commit 2c81bb2
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1287,6 +1287,12 @@ public boolean isSupportZoomInto()
return false;
}

final Class<?> valueClass = getValueClass();
if (StringLookupValue.class.isAssignableFrom(valueClass))
{
return false;
}

final String lookupTableName = getLookupTableName().orElse(null);
if (WindowConstants.TABLENAME_AD_Ref_List.equals(lookupTableName))
{
Expand Down

0 comments on commit 2c81bb2

Please sign in to comment.