Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Fix the gamepad settings view inflation.
In some cases, it would fail to inflate correctly in the sense that it would only show the binding status and not the name of the actual control that was being binded.
  • Loading branch information
lioncash committed Aug 14, 2013
1 parent 0cd94b5 commit 6f1612d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -36,7 +36,7 @@ public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (v == null) {
LayoutInflater vi = (LayoutInflater)c.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(id, null);
v = vi.inflate(id, parent, false);
}
final InputConfigItem o = items.get(position);
if (o != null) {
Expand Down

0 comments on commit 6f1612d

Please sign in to comment.