mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 839887: Sync tabs should close the tabs ui on phones. [r=mfinkle]
This commit is contained in:
parent
006c907322
commit
5354432eca
@ -109,13 +109,12 @@ abstract public class BrowserApp extends GeckoApp
|
||||
final TabsPanel.Panel panel = tab.isPrivate()
|
||||
? TabsPanel.Panel.PRIVATE_TABS
|
||||
: TabsPanel.Panel.NORMAL_TABS;
|
||||
if (areTabsShown() && mTabsPanel.getCurrentPanel() != panel) {
|
||||
mMainHandler.post(new Runnable() {
|
||||
public void run() {
|
||||
mMainHandler.post(new Runnable() {
|
||||
public void run() {
|
||||
if (areTabsShown() && mTabsPanel.getCurrentPanel() != panel)
|
||||
showTabs(panel);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
break;
|
||||
case LOAD_ERROR:
|
||||
|
Loading…
Reference in New Issue
Block a user