From 82acb7f40b0624dd3de3f748e9abd902fd79a384 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Thu, 4 Aug 2016 17:09:15 +0200 Subject: [PATCH] imdb: add plot to imdb output Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/64ea94aa307b63783244e6cce89e1dbebf6491ec Author: vanhofen Date: 2016-08-04 (Thu, 04 Aug 2016) Origin message was: ------------------ - imdb: add plot to imdb output --- src/gui/imdb.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gui/imdb.cpp b/src/gui/imdb.cpp index e8a85dcaf..098701d8f 100644 --- a/src/gui/imdb.cpp +++ b/src/gui/imdb.cpp @@ -337,8 +337,11 @@ void CIMDB::getIMDbData(std::string& txt) txt += "Genre: "+m["Genre"]+"\n"; txt += "Awards: "+m["Awards"]+"\n"; txt += "Regisseur: "+m["Director"]+"\n"; - txt += "Drehbuch: "+m["Writer"]+"\n\n"; + txt += "Drehbuch: "+m["Writer"]+"\n"; + txt += "\n"; txt += "Darsteller: "+m["Actors"]+"\n"; + txt += "\n"; + txt += m["Plot"]; if(m["imdbID"].empty() || m["Response"]!="True") txt = "Keine Daten gefunden";