1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:48:12 +00:00

HackStudio: Save editor's font in configs

This commit is contained in:
Marco Cutecchia 2021-10-06 16:53:43 +02:00 committed by Andreas Kling
parent 423c2e44c9
commit 3c5e07fa1c
2 changed files with 15 additions and 3 deletions

View file

@ -9,6 +9,7 @@
#include "HackStudioWidget.h"
#include "Project.h"
#include <AK/StringBuilder.h>
#include <LibConfig/Client.h>
#include <LibCore/ArgsParser.h>
#include <LibCore/File.h>
#include <LibGUI/Application.h>
@ -38,6 +39,7 @@ int main(int argc, char** argv)
}
auto app = GUI::Application::construct(argc, argv);
Config::pledge_domains({ "HackStudio", "Terminal" });
auto window = GUI::Window::construct();
window->resize(840, 600);