PixelPaint: Incorporate CloneTool into toolbox
This commit is contained in:
parent
22b78226b3
commit
fafbe417d1
Notes:
sideshowbarker
2024-07-18 04:00:35 +09:00
Author: https://github.com/mustafaquraish Commit: https://github.com/SerenityOS/serenity/commit/fafbe417d1f Pull-request: https://github.com/SerenityOS/serenity/pull/10007 Reviewed-by: https://github.com/TobyAsE ✅
1 changed files with 2 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
|||
#include "ToolboxWidget.h"
|
||||
#include "BrushTool.h"
|
||||
#include "BucketTool.h"
|
||||
#include "CloneTool.h"
|
||||
#include "EllipseTool.h"
|
||||
#include "EraseTool.h"
|
||||
#include "GuideTool.h"
|
||||
|
@ -83,6 +84,7 @@ void ToolboxWidget::setup_tools()
|
|||
add_tool("Zoom", "zoom", { 0, Key_Z }, make<ZoomTool>());
|
||||
add_tool("Rectangle Select", "rectangle-select", { 0, Key_R }, make<RectangleSelectTool>());
|
||||
add_tool("Guides", "guides", { 0, Key_G }, make<GuideTool>());
|
||||
add_tool("Clone Tool", "clone", { 0, Key_C }, make<CloneTool>());
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue