зеркало из https://github.com/mozilla/gecko-dev.git
Bug 810342 - Show toolbar shadow on about:blank (r=lucasr)
This commit is contained in:
Родитель
5c57dc5c0b
Коммит
d643f2e22b
|
@ -927,8 +927,9 @@ public class BrowserToolbar implements ViewSwitcher.ViewFactory,
|
|||
|
||||
String url = tab.getURL();
|
||||
|
||||
// Only set shadow to visible when not on about screens.
|
||||
visible &= !(url == null || url.startsWith("about:"));
|
||||
// Only set shadow to visible when not on about screens except about:blank.
|
||||
visible &= !(url == null || (url.startsWith("about:") &&
|
||||
!url.equals("about:blank")));
|
||||
|
||||
if ((mShadow.getVisibility() == View.VISIBLE) != visible) {
|
||||
mShadow.setVisibility(visible ? View.VISIBLE : View.GONE);
|
||||
|
|
Загрузка…
Ссылка в новой задаче