We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32c40ef commit 3188d3cCopy full SHA for 3188d3c
1 file changed
Source/NETworkManager/ViewModels/Settings/CredentialsViewModel.cs
@@ -17,6 +17,7 @@ public class CredentialsViewModel : ViewModelBase
17
#region Variables
18
private IDialogCoordinator dialogCoordinator;
19
DispatcherTimer _dispatcherTimer;
20
+ const int _lockTime = 120; // Seconds remaining until the ui is locked
21
22
private bool _credentialsFileExists;
23
public bool CredentialsFileExists
@@ -425,7 +426,7 @@ private void TimerLockUIStart()
425
426
{
427
Locked = false;
428
- TimeRemaining = TimeSpan.FromSeconds(10);
429
+ TimeRemaining = TimeSpan.FromSeconds(_lockTime);
430
431
_dispatcherTimer.Start();
432
}
0 commit comments