aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/imageEditor/imageEditorUtils/imageEditorInterfaces.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2025-02-23 16:34:40 -0500
committerbobzel <zzzman@gmail.com>2025-02-23 16:34:40 -0500
commit30ec70722678eba318fb7521a8b2bd642328bf54 (patch)
treee4d5fb25224db75a341aa72350802634529074a0 /src/client/views/nodes/imageEditor/imageEditorUtils/imageEditorInterfaces.ts
parent7b6755e33a8e14e96cd0cd2df2dc26b88a8171c6 (diff)
added option+maximize to open in doc editor view (currently only for images). fixed imageEditor to generate edits the first time through.
Diffstat (limited to 'src/client/views/nodes/imageEditor/imageEditorUtils/imageEditorInterfaces.ts')
-rw-r--r--src/client/views/nodes/imageEditor/imageEditorUtils/imageEditorInterfaces.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/views/nodes/imageEditor/imageEditorUtils/imageEditorInterfaces.ts b/src/client/views/nodes/imageEditor/imageEditorUtils/imageEditorInterfaces.ts
index a14b55439..02dbc0312 100644
--- a/src/client/views/nodes/imageEditor/imageEditorUtils/imageEditorInterfaces.ts
+++ b/src/client/views/nodes/imageEditor/imageEditorUtils/imageEditorInterfaces.ts
@@ -13,8 +13,8 @@ export interface Point {
}
export enum ImageToolType {
- GenerativeFill = 'genFill',
- Cut = 'cut',
+ GenerativeFill = 'Generative Fill',
+ Cut = 'Cut',
}
export enum CutMode {
@@ -26,7 +26,6 @@ export enum CutMode {
export interface ImageEditTool {
type: ImageToolType;
- name: string;
btnText: string;
icon: IconProp;
// this is the function that the image tool applies, so it can be defined depending on the tool