blob: f403d38c55529515cf57672f3c2c5f588a72c158 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Index: konqueror/konq_mainwindow.cc
===================================================================
--- konqueror/konq_mainwindow.cc.orig
+++ konqueror/konq_mainwindow.cc
@@ -4926,6 +4926,9 @@ void KonqMainWindow::updateOpenWithActio
KTrader::OfferList::ConstIterator end = services.end();
for (; it != end; ++it )
{
+ if ( (*it)->noDisplay() )
+ continue;
+
KAction *action = new KAction( i18n( "Open with %1" ).arg( (*it)->name() ), 0, 0, (*it)->desktopEntryName().latin1() );
action->setIcon( (*it)->icon() );
|