Hide workspace thumbnails from the overview. But don't worry they are still present and one can switch between them like usual with e.g. shortcuts..
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
16 | Active |
15 | Active |
14 | Active |
13 | Active |
12 | Active |
11 | Active |
10 | Active |
9 | Active |
8 | Active |
7 | Active |
6 | Rejected |
5 | Active |
4 | Rejected |
3 | Rejected |
2 | Active |
1 | Rejected |
remove stylesheet. Override getNonExpandedWidth.
OK, though some comments on the code: 1) both tmp_getAlwaysZoomOut and tmp_getNonExpandedWidth are used undeclared, which will show up as warning in the log; to avoid this, declare them with "let tmp_getAlwaysZoomOut, tmp_getNonExpandedWidth;" at a global level (alternatively, as you are using an extension object: make them properties of hideVisibility, e.g. use this._getAlwaysZoomOut instead) 2) defining init() as const variable of type function is unusual - the plain function definition you had before is what virtually every other extension is using 3) just as St, every import except for Lang is unused and can be removed
Thank you. I would fix it.