1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:28:11 +00:00

HackStudio: Set icon for 'make is not available' notification

This commit is contained in:
Itamar 2021-02-13 10:18:06 +02:00 committed by Andreas Kling
parent b671577223
commit 18a9b66f10

View file

@ -128,6 +128,7 @@ static bool make_is_available()
static void notify_make_not_available()
{
auto notification = GUI::Notification::construct();
notification->set_icon(Gfx::Bitmap::load_from_file("/res/icons/32x32/app-hack-studio.png"));
notification->set_title("'make' Not Available");
notification->set_text("You probably want to install the binutils, gcc, and make ports from the root of the Serenity repository");
notification->show();