~xibo-maintainers/xibo/head-14-fix

« back to all changes in this revision

Viewing changes to client/dotNET/OptionForm.cs

  • Committer: Alex Harrington
  • Date: 2012-12-02 18:44:44 UTC
  • mfrom: (265.1.1 client-141-fix)
  • Revision ID: alex@longhill.org.uk-20121202184444-o7ziv90gx9gfxcbm
Merged client-141

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
            maxConcurrentDownloads.Value = Settings.Default.MaxConcurrentDownloads;
105
105
            logToDiskLocation.Text = Settings.Default.LogToDiskLocation;
106
106
            showInTaskbar.Checked = Settings.Default.ShowInTaskbar;
 
107
            cursorStartPosition.Text = Settings.Default.CursorStartPosition;
107
108
 
108
109
            Debug.WriteLine("Loaded Options Form", "OptionForm");
109
110
        }
200
201
                Settings.Default.LogLevel = logLevel.Text;
201
202
                Settings.Default.LogToDiskLocation = logToDiskLocation.Text;
202
203
                Settings.Default.ShowInTaskbar = showInTaskbar.Checked;
 
204
                Settings.Default.CursorStartPosition = cursorStartPosition.Text;
203
205
 
204
206
                // Commit these changes back to the user settings
205
207
                Settings.Default.Save();