Review of "No overview at start-up" version 11

Details Page Preview

No overview at start-up. Nothing more.

Extension Homepage
https://github.com/fthx/no-overview

No comments.

Diff Against

Files

Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.

All Versions

Version Status
17 Active
16 Active
15 Active
14 Rejected
13 Active
12 Active
11 Active
10 Active
9 Active
8 Active
7 Rejected
6 Active
5 Active
4 Active
3 Rejected
2 Rejected
1 Rejected

Previous Reviews on this Version

fthx posted a review
Disabling a condition that is pratically never satisfied and useless since the overview is only hidden at session start-up.
JustPerfection active
I approve this one since the overview startup behavior only happens after restart. but if you want to do that, you should hold the original value of `Main.layoutManager.startInOverview` and revert that to the original value on disable. for example: construct: this.startInOverviewOriginal = Main.layoutManager.startInOverview; enable: if (Main.layoutManager.startInOverview) { Main.layoutManager.startInOverview = true; } disable: Main.layoutManager.startInOverview = this.startInOverviewOriginal;