Commit 3d695250 authored by Nick Poulden's avatar Nick Poulden
Browse files

Static tab size fix

parent 5f761890
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -371,7 +371,7 @@ Ext.define('Docs.view.Tabs', {
     * @return {Number} Width of the tab bar (not including the static tabs)
     */
    tabBarWidth: function() {
        return this.getWidth() - 265;
        return this.getWidth() - (this.staticTabs.length * 50) - 15;
    },

    /**