diff --git a/Base/res/icons/pixelpaint/guides.png b/Base/res/icons/pixelpaint/guides.png new file mode 100644 index 0000000000..9e62d16e90 Binary files /dev/null and b/Base/res/icons/pixelpaint/guides.png differ diff --git a/Userland/Applications/PixelPaint/ToolboxWidget.cpp b/Userland/Applications/PixelPaint/ToolboxWidget.cpp index 17eabaa19c..55481348a2 100644 --- a/Userland/Applications/PixelPaint/ToolboxWidget.cpp +++ b/Userland/Applications/PixelPaint/ToolboxWidget.cpp @@ -9,6 +9,7 @@ #include "BucketTool.h" #include "EllipseTool.h" #include "EraseTool.h" +#include "GuideTool.h" #include "LineTool.h" #include "MoveTool.h" #include "PenTool.h" @@ -79,6 +80,7 @@ void ToolboxWidget::setup_tools() add_tool("Ellipse", "circle", { Mod_Ctrl | Mod_Shift, Key_E }, make()); add_tool("Zoom", "zoom", { 0, Key_Z }, make()); add_tool("Rectangle Select", "rectangle-select", { 0, Key_R }, make()); + add_tool("Guides", "guides", { 0, Key_G }, make()); } }