Crunchy-Downloader/CRD/Views/DownloadsPageView.axaml.cs
Elwador 9d66eb34c9 Add - Added Table view to history tab
Add - Added Sorting to history tab
Add - Added next air date to history posters
Add - Added scale slider to history tab for posters
Chg - Auto download always starts new downloads even when you are not on the download queue tab
Chg - Small size adjustment for the text in the calendar tab
Fix - Simultaneous downloads set to 1 and auto download didn't work together
Fix - Finished downloads didn't resume correctly
2024-06-27 00:04:50 +02:00

13 lines
265 B
C#

using Avalonia;
using Avalonia.Controls;
using Avalonia.Interactivity;
using CRD.Downloader;
using CRD.ViewModels;
namespace CRD.Views;
public partial class DownloadsPageView : UserControl{
public DownloadsPageView(){
InitializeComponent();
}
}