Skip to content

Commit

Permalink
Fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
paradoxxxzero committed Jul 15, 2019
1 parent 02107e4 commit 0f724d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion superWorkspace/superWorkspace.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var SuperWorkspace = class SuperWorkspace {
let previousLayout =
Me.stateManager.getState(
`${this.categoryKey}_${this.monitor.index}`
) || 'auto-grid';
) || 'half';
const Layout = global.tilingManager.getLayoutByKey(previousLayout);
this.tilingLayout = new Layout(this);
this.frontendContainer = new St.Widget({
Expand Down
2 changes: 1 addition & 1 deletion tilingManager/tilingManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ var TilingManager = class TilingManager {
);
if (!this.availableLayouts.length) {
// Use grid by default if all layouts are disabled
this.availableLayouts = ['auto-grid'];
this.availableLayouts = ['half'];
}
}

Expand Down

0 comments on commit 0f724d5

Please sign in to comment.