@@ -437,7 +437,7 @@ public static class Config
437437 /// <summary>
438438 /// Gets, sets value indicates that the Image focus tool should be enable
439439 /// </summary>
440- public static bool EnableImageFocus { get ; set ; } = false ;
440+ public static bool EnableImageFocusMode { get ; set ; } = false ;
441441
442442 #endregion
443443
@@ -465,13 +465,13 @@ public static class Config
465465 public static int FrmMainHeight { get ; set ; } = 800 ;
466466
467467 /// <summary>
468- /// Gets, sets the panning speed when <see cref="EnableImageFocus "/> is on.
468+ /// Gets, sets the panning speed when <see cref="EnableImageFocusMode "/> is on.
469469 /// Value range is from 0 to 100.
470470 /// </summary>
471471 public static float PanSpeed { get ; set ; } = 20f ;
472472
473473 /// <summary>
474- /// Gets, sets the zooming speed when <see cref="EnableImageFocus "/> is on.
474+ /// Gets, sets the zooming speed when <see cref="EnableImageFocusMode "/> is on.
475475 /// Value range is from -500 to 500.
476476 /// </summary>
477477 public static float ZoomSpeed { get ; set ; } = 0 ;
@@ -813,7 +813,7 @@ public static void Load()
813813 UseRawThumbnail = items . GetValue ( nameof ( UseRawThumbnail ) , UseRawThumbnail ) ;
814814 //IsHideToolbarInFullscreen = items.GetValue(nameof(IsHideToolbarInFullscreen), IsHideToolbarInFullscreen);
815815 //IsHideThumbnailBarInFullscreen = items.GetValue(nameof(IsHideThumbnailBarInFullscreen), IsHideThumbnailBarInFullscreen);
816- EnableImageFocus = items . GetValue ( nameof ( EnableImageFocus ) , EnableImageFocus ) ;
816+ EnableImageFocusMode = items . GetValue ( nameof ( EnableImageFocusMode ) , EnableImageFocusMode ) ;
817817
818818 #endregion
819819
@@ -1153,7 +1153,7 @@ private static dynamic PrepareJsonSettingObjects()
11531153 settings . TryAdd ( nameof ( UseRawThumbnail ) , UseRawThumbnail ) ;
11541154 //settings.TryAdd(nameof(IsHideToolbarInFullscreen), IsHideToolbarInFullscreen);
11551155 //settings.TryAdd(nameof(IsHideThumbnailBarInFullscreen), IsHideThumbnailBarInFullscreen);
1156- settings . TryAdd ( nameof ( EnableImageFocus ) , EnableImageFocus ) ;
1156+ settings . TryAdd ( nameof ( EnableImageFocusMode ) , EnableImageFocusMode ) ;
11571157
11581158 #endregion
11591159
0 commit comments