private void notifyIcon_BalloonTipClicked(object sender, EventArgs e)
        {
            GUI.MinimizeToTray(false);

            FrontTab = Tabs.Bookmarks;

            var serie = DownloadManager.Instance.Bookmarks.List.FirstOrDefault(b => b.GetNewChapters().Any());

            GUI.SelectBookmarkedSerie(serie);
            GUI.UpdateAll();
            GUI.SelectBookmarkedChapter(serie.GetNewChapters().FirstOrDefault());
            GUI.UpdateAll();
        }
Ejemplo n.º 2
0
 private void UpdateNowServer(Server a_server)
 {
     DownloadManager.Instance.DownloadSeries(GUI.SelectedServer, true);
     GUI.UpdateAll();
 }