Skip to content

Commit

Permalink
Made settings cache video path selectable.
Browse files Browse the repository at this point in the history
  • Loading branch information
cDima committed Feb 11, 2017
1 parent bf3702e commit 100aa00
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 97 deletions.
170 changes: 87 additions & 83 deletions ScreenSaver/SettingsForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 3 additions & 14 deletions ScreenSaver/SettingsForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,9 @@ private void LoadSettings()
{
txtCacheFolderPath.Text = settings.CacheLocation;
}

if(settings.CacheVideos)
{
changeCacheLocationButton.Enabled = true;
}
else
{
changeCacheLocationButton.Enabled = false;
}

// todo: on Main tab - get Aerial.AerialContext entities in the checkbox, and implement saving exact videos;
// preferably showing a preview of them to the side of the selection
// todo: on the Cache page show space contraints, and a Download All Now button, as in Aerial win.
// todo: download releases from github live, and show them on the About page.

changeCacheLocationButton.Enabled = settings.CacheVideos;

tabs.TabPages.Remove(tabAbout);
grpChosenVideos.Hide();
}
Expand Down

0 comments on commit 100aa00

Please sign in to comment.