Skip to content

Commit af709b7

Browse files
Making changes to hopefully pass the review
1 parent 2bcd7d5 commit af709b7

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ All features can be enabled/disabled in the settings.
8989
- The cloned node will have the same dimensions and color as the original node
9090
- `Advanced Canvas: Expand node up/down/left/right`
9191
- Expand the selected node in the direction of the arrow keys
92-
- Default hotkey: `Alt` + `Arrow keys`
9392

9493
## Node Shapes
9594
<details>
@@ -158,7 +157,7 @@ Convert image nodes to stickers. Stickers have a transparent background and no b
158157
</details>
159158

160159
## Presentation Mode
161-
In presentation mode, you can navigate through the nodes using the arrow keys. The diffrent slides/nodes are connected using arrows. If you want to have multiple arrows pointing from the same node, you can number them in the order you want to navigate through them. While in presentation mode, the canvas is in readonly mode (So [better readonly](#better-readonly) effects the presentation mode as well!). You can exit the presentation mode using the `ESC` key.
160+
In presentation mode, you can navigate through the nodes using the arrow keys. The different slides/nodes are connected using arrows. If you want to have multiple arrows pointing from the same node, you can number them in the order you want to navigate through them. While in presentation mode, the canvas is in readonly mode (So [better readonly](#better-readonly) effects the presentation mode as well!). You can exit the presentation mode using the `ESC` key.
162161

163162
<img src="./assets/sample-presentation-simple.gif" alt="Presentation mode example"/>
164163

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "advanced-canvas",
33
"name": "Advanced Canvas",
4-
"version": "2.4.1",
4+
"version": "2.4.2",
55
"minAppVersion": "1.1.0",
66
"description": "Supercharge your canvas experience! Create presentations, flowcharts and more!",
77
"author": "Developer-Mike",

src/canvas-extensions/commands-canvas-extension.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,6 @@ export default class CommandsCanvasExtension {
5353
this.plugin.addCommand({
5454
id: `expand-node-${direction}`,
5555
name: `Expand node ${direction}`,
56-
hotkeys: [
57-
{
58-
modifiers: ['Alt'],
59-
key: DIRECTION_KEYS[direction]
60-
}
61-
],
6256
checkCallback: CanvasHelper.canvasCommand(
6357
this.plugin,
6458
(canvas: Canvas) => !canvas.readonly && canvas.selection.size === 1,

src/settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ export class AdvancedCanvasPluginSettingTab extends PluginSettingTab {
179179
180180
new Setting(containerEl)
181181
.setName("Disable node popup menu")
182-
.setDesc("When enabled, the node popup menu won't show when in readonly mode. (If node interation is disabled, this setting has no effect.)")
182+
.setDesc("When enabled, the node popup menu won't show when in readonly mode. (If node interaction is disabled, this setting has no effect.)")
183183
.addToggle((toggle) =>
184184
toggle
185185
.setValue(this.settingsManager.settings.disableNodePopup)

0 commit comments

Comments
 (0)