From 12e3659addf634d27a8e39d68e20bc6b5d69ef8b Mon Sep 17 00:00:00 2001 From: Julia Svinareva Date: Wed, 9 Oct 2019 15:14:02 +0300 Subject: [PATCH] [Common] Fix status button last tab (Status Bar) --- apps/common/main/lib/component/TabBar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/component/TabBar.js b/apps/common/main/lib/component/TabBar.js index 1a3e3b518..27d120875 100644 --- a/apps/common/main/lib/component/TabBar.js +++ b/apps/common/main/lib/component/TabBar.js @@ -700,7 +700,7 @@ define([ //left = tab.position().left; //right = left + tab.width(); - return !(left < leftbound) && !(right > rightbound); + return !(left < leftbound) && !(right - rightbound > 0.1); } return false;