private void applySettings()
 {
     Process.GetCurrentProcess().PriorityClass = settings.Priority;
     _view.SetTransition(getTransition());
     loadMonitors();
     if (string.IsNullOrEmpty(_imageName))
     {
         updateMeasures();
         return;
     }
     _timer.Stop();
     _timer.Interval = settings.UpdateInterval;
     _timer.Start();
     initAutoRun();
     updateView();
     _view.ApplySettings();
 }