summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/advancedfm/advancedfm.cpp15
1 files changed, 9 insertions, 6 deletions
diff --git a/noncore/apps/advancedfm/advancedfm.cpp b/noncore/apps/advancedfm/advancedfm.cpp
index d7bad51..b6e7a30 100644
--- a/noncore/apps/advancedfm/advancedfm.cpp
+++ b/noncore/apps/advancedfm/advancedfm.cpp
@@ -726,5 +726,7 @@ void AdvancedFm::showFileMenu() {
726 726
727 MimeType mt( curApp ); 727 MimeType mt( curApp );
728
728 const AppLnk* app = mt.application(); 729 const AppLnk* app = mt.application();
730
729 QFile fi(curApp); 731 QFile fi(curApp);
730 732
@@ -734,14 +736,15 @@ void AdvancedFm::showFileMenu() {
734 736
735 m->insertItem( tr( "Show Hidden Files" ), this, SLOT( showHidden() )); 737 m->insertItem( tr( "Show Hidden Files" ), this, SLOT( showHidden() ));
736 if ( !QFileInfo(fi).isDir() ) { 738
737// m->insertSeparator(); 739 if ( QFileInfo(fi).isDir() ) {
738// m->insertItem( tr( "Change Directory" ), this, SLOT( doLocalCd() )); 740 m->insertSeparator();
739// } else { 741 m->insertItem( tr( "Change Directory" ), this, SLOT( doLocalCd() ));
742 } else {
740 743
741 if ( app ) 744 if ( app )
742 m->insertItem( app->pixmap(), tr( "Open in " 745 m->insertItem( app->pixmap(), tr( "Open in "
743 + app->name() ), this, SLOT( runThis() ) ); 746 + app->name() ), this, SLOT( runThis() ) );
744 else if( QFileInfo(fi).isExecutable() ) 747 else if( QFileInfo(fi).isExecutable() ) //damn opie doesnt like this
745 m->insertItem( Resource::loadPixmap( app->name()), tr( "Execute" ), this, SLOT( runThis() ) ); 748 m->insertItem( /*Resource::loadPixmap( app->name()),*/ tr( "Execute" ), this, SLOT( runThis() ) );
746 749
747 m->insertItem( Resource::loadPixmap( "txt" ), tr( "Open as text" ),this, SLOT( runText() ) ); 750 m->insertItem( Resource::loadPixmap( "txt" ), tr( "Open as text" ),this, SLOT( runText() ) );