Skip to content

Commit

Permalink
overview: make overview usable on 3.38
Browse files Browse the repository at this point in the history
The monkey patching just causes problems on 3.38 after they made a
fairly big rewrite.
  • Loading branch information
hedning committed Nov 9, 2020
1 parent 8efe979 commit 261ae9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kludges.js
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ function init() {
});
}

if (version[1] > 32)
if (version[1] > 32 && version[1] < 37)
registerOverridePrototype(Workspace.UnalignedLayoutStrategy, 'computeLayout', computeLayout);

// Kill pinch gestures as they work pretty bad (especially when 3-finger swiping)
Expand Down

0 comments on commit 261ae9d

Please sign in to comment.