diff -r 79859ed3eea9 -r 919f36ff910f browserutilities/browserdialogsprovider/Src/BrowserViewImagesPopup.cpp --- a/browserutilities/browserdialogsprovider/Src/BrowserViewImagesPopup.cpp Tue Aug 31 16:17:46 2010 +0300 +++ b/browserutilities/browserdialogsprovider/Src/BrowserViewImagesPopup.cpp Wed Sep 01 12:28:30 2010 +0100 @@ -19,19 +19,20 @@ // USER INCLUDES -#include "BrowserDialogsProvider.h" +#include +#include #include "BrowserDialogsProvider.hrh" #include "BrowserViewImagesPopup.h" #include "PhotoOperationWait.h" #include "BrowserViewImagesListBox.h" // SYSTEM INCLUDES -#include +#include #include -#include +#include #include #include -#include +#include #include #include @@ -140,7 +141,11 @@ void CBrowserViewImagesPopup::HandleListBoxEventL( CEikListBox* aListBox, TListBoxEvent aEventType ) { - if((aEventType==EEventEnterKeyPressed || aEventType==EEventItemDoubleClicked) && aListBox==ListBox()) +#ifdef BRDO_SINGLE_CLICK_ENABLED_FF + if((aEventType==EEventEnterKeyPressed || aEventType==EEventItemDoubleClicked || aEventType==EEventItemSingleClicked) && aListBox==ListBox()) +#else + if((aEventType==EEventEnterKeyPressed || aEventType==EEventItemDoubleClicked ) && aListBox==ListBox()) +#endif { ProcessCommandL( EDialogsProviderCmdViewImagesView ); }