1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 15:57:34 +00:00

Calculator: Improve UI margin consistency

This commit is contained in:
FrHun 2021-07-27 21:11:06 +02:00 committed by Andreas Kling
parent 411622148a
commit 55c0307288
2 changed files with 3 additions and 3 deletions

View file

@ -42,7 +42,7 @@ int main(int argc, char** argv)
auto window = GUI::Window::construct();
window->set_title("Calculator");
window->set_resizable(false);
window->resize(254, 215);
window->resize(250, 215);
auto& widget = window->set_main_widget<CalculatorWidget>();