mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 706819: Show tabs-tray faster. [r=mfinkle]
This commit is contained in:
parent
1070a43d7c
commit
d9f7afff3b
@ -151,7 +151,7 @@
|
||||
android:windowSoftInputMode="stateAlwaysVisible|adjustResize"/>
|
||||
|
||||
<activity android:name="org.mozilla.gecko.TabsTray"
|
||||
android:theme="@style/Gecko.Translucent"
|
||||
android:theme="@style/Gecko.Translucent.TabsTray"
|
||||
android:launchMode="singleTask"/>
|
||||
|
||||
<activity android:name="org.mozilla.gecko.GeckoPreferences"
|
||||
|
@ -79,10 +79,6 @@ public class TabsTray extends Activity implements GeckoApp.OnTabsChangedListener
|
||||
|
||||
setContentView(R.layout.tabs_tray);
|
||||
|
||||
if (Build.VERSION.SDK_INT >= 11) {
|
||||
GeckoActionBar.hide(this);
|
||||
}
|
||||
|
||||
mWaitingForClose = false;
|
||||
|
||||
mList = (ListView) findViewById(R.id.list);
|
||||
|
@ -49,4 +49,9 @@
|
||||
<item name="android:displayOptions">showHome|homeAsUp|showTitle</item>
|
||||
</style>
|
||||
|
||||
<!-- TabsTray ActionBar -->
|
||||
<style name="ActionBar.TabsTray">
|
||||
<item name="android:visibility">gone</item>
|
||||
</style>
|
||||
|
||||
</resources>
|
||||
|
@ -41,4 +41,8 @@
|
||||
<item name="android:actionBarStyle">@style/ActionBar.GeckoPreferences</item>
|
||||
</style>
|
||||
|
||||
<style name="Gecko.Translucent.TabsTray">
|
||||
<item name="android:actionBarStyle">@style/ActionBar.TabsTray</item>
|
||||
</style>
|
||||
|
||||
</resources>
|
||||
|
@ -33,4 +33,6 @@
|
||||
|
||||
<style name="Gecko.TitleBar.Preferences"/>
|
||||
|
||||
<style name="Gecko.Translucent.TabsTray"/>
|
||||
|
||||
</resources>
|
||||
|
Loading…
Reference in New Issue
Block a user