File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
frank-flow/src/frontend/src/app Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -17,5 +17,5 @@ export class DefaultSettings implements Settings {
17
17
ignoreConfigurationSettings = false ;
18
18
showExplorer = true ;
19
19
showUnsavedChangesWarning = true ;
20
- automaticPanzoom = false ;
20
+ automaticPan = false ;
21
21
}
Original file line number Diff line number Diff line change @@ -202,11 +202,11 @@ <h2>Flow</h2>
202
202
< h2 > Assistance</ h2 >
203
203
< div class ="input-row ">
204
204
< label
205
- title ="When pressing code in the editor the flow automatically locks onto the corresponding node in the flowchart "
206
- > Automatically move flow to selected code </ label
205
+ title ="Automatically pan to the node in the Canvas when the cursor position is at the corresponding element in the Editor "
206
+ > Automatically pan to selected node </ label
207
207
>
208
208
< app-toggle
209
- [(state)] ="settings.automaticPanzoom "
209
+ [(state)] ="settings.automaticPan "
210
210
(stateChange) ="setSettings() "
211
211
> </ app-toggle >
212
212
</ div >
Original file line number Diff line number Diff line change @@ -11,5 +11,5 @@ export interface Settings extends FlowSettings {
11
11
useLastMode : boolean ;
12
12
switchWithoutSaving : SwitchWithoutSavingOption ;
13
13
ignoreConfigurationSettings : boolean ;
14
- automaticPanzoom : boolean ;
14
+ automaticPan : boolean ;
15
15
}
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ export class FlowStructureService {
74
74
this . isNodeAtPosition ( node , position )
75
75
) ;
76
76
this . resetHighlightNodeInXml ( ) ;
77
- if ( this . settings . automaticPanzoom ) {
77
+ if ( this . settings . automaticPan ) {
78
78
this . panToNode ( ) ;
79
79
}
80
80
}
You can’t perform that action at this time.
0 commit comments