} else if (e.getSource() == downloadNow) {
DownloadTrigger.trigger((Show) target.getValueAt(lastClickedRow, 0), false);
} else if (e.getSource() == openBrowser) {
Util.openURL(((Show) target.getValueAt(lastClickedRow, 0)).getTvrageUrl());
} else if (e.getSource() == renewInfo) {
Show show = (Show) target.getValueAt(lastClickedRow, 0);
show.setNextEpisode(null);
new ShowInfoFinder(show).start();
} else if (e.getSource() == updateAll) {
ShowUpdater.updateAllShows();
}
}