Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove description if it is null.
  • Loading branch information
tikismoke committed Aug 1, 2015
1 parent edd6eea commit 084ac59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/activities/Widgets_Manager.java
Expand Up @@ -108,7 +108,7 @@ public LinearLayout loadActivWidgets(Activity context, int id,
tmpPan=null;
tmpPan=new FrameLayout(context);
String label = feature.getDescription();
if(label.length() < 1)
if(label.length() < 1||label.equalsIgnoreCase("null"))
label = feature.getName();

String Value_type = feature.getValue_type();
Expand Down

0 comments on commit 084ac59

Please sign in to comment.