We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd6ee17 commit 9823fc3Copy full SHA for 9823fc3
src/Files.App/ViewModels/UserControls/NavigationToolbarViewModel.cs
@@ -206,8 +206,18 @@ public bool IsSearchBoxVisible
206
}
207
208
209
+ // SetProperty doesn't seem to properly notify the binding in path bar
210
private string? _PathText;
- public string? PathText { get => _PathText; set => SetProperty(ref _PathText, value); }
211
+ public string? PathText
212
+ {
213
+ get => _PathText;
214
+ set
215
216
+ _PathText = value;
217
+ OnPropertyChanged(nameof(PathText));
218
+ }
219
220
+
221
222
private bool _IsOmnibarFocused;
223
public bool IsOmnibarFocused
0 commit comments