Bug 917947: SearchEngine icons are small in the dialog. [r=mfinkle] [r=margaret]

This commit is contained in:
Sriram Ramasubramanian 2013-10-14 13:52:23 -07:00
Родитель e9af7cbb69
Коммит caf1a161b7
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -207,7 +207,9 @@ public class SearchEnginePreference extends Preference implements View.OnLongCli
if (mPromptIcon == null && mIconBitmap != null) {
mPromptIcon = new BitmapDrawable(mFaviconView.getBitmap());
}
builder.setIcon(mPromptIcon);
// Icons are hidden until Bug 926711 is fixed.
//builder.setIcon(mPromptIcon);
// We have to construct the dialog itself on the UI thread.
ThreadUtils.postToUiThread(new Runnable() {