private void buttonApplyTimeFrame_Click(object sender, EventArgs e)
        {
            if (SelectedAccount != null)
            {
                Busy = true;

                // TODO: do this in the background
                _feature.SetDeviceOptions(SelectedAccount, (SyncTimeFrame)comboTimeFrame.SelectedIndex);
                CheckTimeFrameDirty();
            }
        }