mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:57:44 +00:00
Launcher: The "Launcher" config file group shouldn't take up visual space.
Also tweak Launcher.ini since CConfigFile bools are 1/0 rather than true/false. We should probably use true/false. Or switch over to JSON.
This commit is contained in:
parent
8a2123e385
commit
d2ec64ace0
2 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,7 @@ GWindow* make_launcher_window()
|
|||
|
||||
auto* window = new GWindow;
|
||||
window->set_title("Launcher");
|
||||
int launcher_size = config->groups().size() * 50;
|
||||
int launcher_size = (config->groups().size() - 1) * 50;
|
||||
window->set_rect(50, 50, vertical ? 50 : launcher_size, vertical ? launcher_size : 50);
|
||||
window->set_show_titlebar(false);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue