diff options
author | Christian <zerov83@gmail.com> | 2016-03-24 20:43:04 +0100 |
---|---|---|
committer | Christian <zerov83@gmail.com> | 2016-03-24 20:43:04 +0100 |
commit | de768eeec1692df5dbd114129ec772749df12bf6 (patch) | |
tree | 8f04628f95ad8869eab3fd27030682a1305ea3e8 /Config.h | |
parent | 4c8f707f36e49ccd00cdaa200da3cb3c629e3fe1 (diff) | |
download | vdr-plugin-plex-de768eeec1692df5dbd114129ec772749df12bf6.tar.gz vdr-plugin-plex-de768eeec1692df5dbd114129ec772749df12bf6.tar.bz2 |
Some fixes for detailview
Diffstat (limited to 'Config.h')
-rw-r--r-- | Config.h | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -76,10 +76,14 @@ public: std::string GetLanguage(); std::string GetUsername(); std::string GetPassword(); - int ThumbHeight() { return 1080 / CoverGridRows; }; - int ThumbWidth() { return 1920 / CoverGridColumns; }; - int ArtHeight() { return 1080 / 4; }; - int ArtWidth() { return 1920 / 4; }; + //int ThumbHeight() { return 1080 / CoverGridRows; }; + //int ThumbWidth() { return 1920 / CoverGridColumns; }; + //int ArtHeight() { return 1080 / 4; }; + //int ArtWidth() { return 1920 / 4; }; + int ThumbHeight() { return 1080; }; + int ThumbWidth() { return 1920; }; + int ArtHeight() { return 1080; }; + int ArtWidth() { return 1920; }; int BannerHeight() { return 1080 / 2; }; int BannerWidth() { return 1920 / 2; }; |