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

Launcher: Add icons for VisualBuilder and IRCClient.

This commit is contained in:
Andreas Kling 2019-04-29 04:07:36 +02:00
parent 475a17fa4b
commit f254a84d17
3 changed files with 2 additions and 0 deletions

View file

@ -74,6 +74,8 @@ GWindow* make_launcher_window()
new LauncherButton("FontEditor", "/res/icons/FontEditor.png", "/bin/FontEditor", widget);
new LauncherButton("FileManager", "/res/icons/32x32/filetype-folder.png", "/bin/FileManager", widget);
new LauncherButton("TextEditor", "/res/icons/TextEditor.png", "/bin/TextEditor", widget);
new LauncherButton("VisualBuilder", "/res/icons/32x32/app-visual-builder.png", "/bin/VisualBuilder", widget);
new LauncherButton("IRCClient", "/res/icons/32x32/app-irc-client.png", "/bin/IRCClient", widget);
return window;
}