فهرست منبع

Fix options used to initialize a sidebar

Steven Silvester 8 سال پیش
والد
کامیت
8cf6aafdad
1فایلهای تغییر یافته به همراه5 افزوده شده و 1 حذف شده
  1. 5 1
      src/application/shell.ts

+ 5 - 1
src/application/shell.ts

@@ -229,7 +229,11 @@ class SideBarHandler {
    */
   constructor(side: string) {
     this._side = side;
-    this._sideBar = new TabBar({ allowDeselect: true });
+    this._sideBar = new TabBar({
+      insertBehavior: 'none',
+      removeBehavior: 'none',
+      allowDeselect: true
+    });
     this._stackedPanel = new StackedPanel();
     this._sideBar.hide();
     this._stackedPanel.hide();