diff options
| author | Lioncash <mathew1800@gmail.com> | 2013-08-14 14:33:47 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2013-08-14 14:33:47 -0400 |
| commit | 6f1612d99cb7acd79434eac24916a9d0b0c52ff5 (patch) | |
| tree | c25699e07a9606b7770295d17c7345fe85cbe78a /Source/Android/src | |
| parent | 0cd94b5bc769286ce803d3a4045ce817334826cf (diff) | |
[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.
Diffstat (limited to 'Source/Android/src')
| -rw-r--r-- | Source/Android/src/org/dolphinemu/dolphinemu/InputConfigAdapter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/InputConfigAdapter.java b/Source/Android/src/org/dolphinemu/dolphinemu/InputConfigAdapter.java index c7e23f3cfa..ad3a5211c8 100644 --- a/Source/Android/src/org/dolphinemu/dolphinemu/InputConfigAdapter.java +++ b/Source/Android/src/org/dolphinemu/dolphinemu/InputConfigAdapter.java @@ -36,7 +36,7 @@ public final class InputConfigAdapter extends ArrayAdapter<InputConfigItem> { 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) { |
