##// END OF EJS Templates
Do not hide scroll buttons if some tabs are still hidden....
Jean-Philippe Lang -
r3064:b8cd280bec05
parent child
Show More
@@ -114,7 +114,7 function displayTabsButtons() {
114 tabsWidth += lis[i].getWidth() + 6;
114 tabsWidth += lis[i].getWidth() + 6;
115 }
115 }
116 }
116 }
117 if (tabsWidth < el.getWidth() - 60) {
117 if ((tabsWidth < el.getWidth() - 60) && (lis[0].visible())) {
118 el.down('div.tabs-buttons').hide();
118 el.down('div.tabs-buttons').hide();
119 } else {
119 } else {
120 el.down('div.tabs-buttons').show();
120 el.down('div.tabs-buttons').show();
General Comments 0
You need to be logged in to leave comments. Login now