From 65a5d66387b7f1092d4e375b9102b701a38d1fc5 Mon Sep 17 00:00:00 2001 From: Karol Kosek Date: Sat, 18 Sep 2021 13:11:32 +0200 Subject: [PATCH] PixelPaint: Use main window's icon in the 'Create new image' widget --- Userland/Applications/PixelPaint/CreateNewImageDialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Applications/PixelPaint/CreateNewImageDialog.cpp b/Userland/Applications/PixelPaint/CreateNewImageDialog.cpp index 1a5dd5e057..51aa608c3c 100644 --- a/Userland/Applications/PixelPaint/CreateNewImageDialog.cpp +++ b/Userland/Applications/PixelPaint/CreateNewImageDialog.cpp @@ -17,6 +17,7 @@ CreateNewImageDialog::CreateNewImageDialog(GUI::Window* parent_window) : Dialog(parent_window) { set_title("Create new image"); + set_icon(parent_window->icon()); resize(200, 200); auto& main_widget = set_main_widget();