mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 912298 - HomePager's stub and view should not share the same id (r=rnewman)
This commit is contained in:
parent
171c5c787c
commit
2ce3385395
@ -1512,7 +1512,7 @@ abstract public class BrowserApp extends GeckoApp
|
||||
}
|
||||
|
||||
if (mHomePager == null) {
|
||||
final ViewStub homePagerStub = (ViewStub) findViewById(R.id.home_pager);
|
||||
final ViewStub homePagerStub = (ViewStub) findViewById(R.id.home_pager_stub);
|
||||
mHomePager = (HomePager) homePagerStub.inflate();
|
||||
}
|
||||
mHomePager.show(getSupportFragmentManager(), page, animator);
|
||||
|
@ -31,7 +31,7 @@
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent">
|
||||
|
||||
<ViewStub android:id="@+id/home_pager"
|
||||
<ViewStub android:id="@+id/home_pager_stub"
|
||||
android:layout="@layout/home_pager"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"/>
|
||||
|
Loading…
Reference in New Issue
Block a user