mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:17:35 +00:00
PixelPaint: Incorporate CloneTool into toolbox
This commit is contained in:
parent
22b78226b3
commit
fafbe417d1
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
Add a link
Reference in a new issue