Advertisement
Guest User

Untitled

a guest
Aug 5th, 2012
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.83 KB | None | 0 0
  1. diff --git a/xbmc/pictures/GUIDialogPictureInfo.cpp b/xbmc/pictures/GUIDialogPictureInfo.cpp
  2. index 27c32dd..bc53dc9 100644
  3. --- a/xbmc/pictures/GUIDialogPictureInfo.cpp
  4. +++ b/xbmc/pictures/GUIDialogPictureInfo.cpp
  5. @@ -24,6 +24,7 @@
  6.  #include "guilib/GUIWindowManager.h"
  7.  #include "FileItem.h"
  8.  #include "guilib/LocalizeStrings.h"
  9. +#include "PictureInfoTag.h"
  10.  
  11.  #define CONTROL_PICTURE_INFO 5
  12.  
  13. @@ -88,6 +89,11 @@ void CGUIDialogPictureInfo::UpdatePictureInfo()
  14.    m_pictureInfo->Clear();
  15.    for (int info = SLIDE_INFO_START; info <= SLIDE_INFO_END; ++info)
  16.    {
  17. +    // we don't need want to add both SLIDE_EXIF_DATE_TIME and SLIDE_EXIF_DATE
  18. +    // so we skip one without time
  19. +    if (info == SLIDE_EXIF_DATE)
  20. +      continue;
  21. +
  22.      CStdString picInfo = g_infoManager.GetLabel(info);
  23.      if (!picInfo.IsEmpty())
  24.      {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement