@@ -23,15 +23,15 @@ public partial class SettingsPaneGeneralViewModel : BaseModel
2323 private readonly Portable _portable ;
2424 private readonly Internationalization _translater ;
2525 private readonly IPublicAPI _publicAPIInstance ;
26- private readonly bool _initialSensitiveAccents ;
26+ private readonly bool _initialIgnoreAccents ;
2727 public SettingsPaneGeneralViewModel ( Settings settings , Updater updater , Portable portable , Internationalization translater , IPublicAPI publicApiInstance )
2828 {
2929 Settings = settings ;
3030 _updater = updater ;
3131 _portable = portable ;
3232 _translater = translater ;
3333 _publicAPIInstance = publicApiInstance ;
34- _initialSensitiveAccents = settings . SensitiveAccents ;
34+ _initialIgnoreAccents = settings . IgnoreAccents ;
3535 UpdateEnumDropdownLocalizations ( ) ;
3636 }
3737
@@ -176,7 +176,7 @@ public bool EnableDialogJump
176176 public class DialogJumpWindowPositionData : DropdownDataGeneric < DialogJumpWindowPositions > { }
177177 public class DialogJumpResultBehaviourData : DropdownDataGeneric < DialogJumpResultBehaviours > { }
178178 public class DialogJumpFileResultBehaviourData : DropdownDataGeneric < DialogJumpFileResultBehaviours > { }
179- public bool SensitiveAccentsRestartRequired => Settings . SensitiveAccents != _initialSensitiveAccents ;
179+ public bool IgnoreAccentsRestartRequired => Settings . IgnoreAccents != _initialIgnoreAccents ;
180180
181181 public List < DialogJumpWindowPositionData > DialogJumpWindowPositions { get ; } =
182182 DropdownDataGeneric < DialogJumpWindowPositions > . GetValues < DialogJumpWindowPositionData > ( "DialogJumpWindowPosition" ) ;
@@ -201,16 +201,16 @@ public int SearchDelayTimeValue
201201 }
202202
203203
204- public bool SensitiveAccents
204+ public bool IgnoreAccents
205205 {
206- get => Settings . SensitiveAccents ;
206+ get => Settings . IgnoreAccents ;
207207 set
208208 {
209- if ( Settings . SensitiveAccents != value )
209+ if ( Settings . IgnoreAccents != value )
210210 {
211- Settings . SensitiveAccents = value ;
211+ Settings . IgnoreAccents = value ;
212212 OnPropertyChanged ( ) ;
213- OnPropertyChanged ( nameof ( SensitiveAccentsRestartRequired ) ) ;
213+ OnPropertyChanged ( nameof ( IgnoreAccentsRestartRequired ) ) ;
214214 }
215215 }
216216 }
0 commit comments