| Summary: | Clicking links to 'media' (jpg's,avi,etc) and choosing to open the media with the associated program doesn't work. | ||
|---|---|---|---|
| Product: | [Applications] akregator | Reporter: | raditzman |
| Component: | general | Assignee: | kdepim bugs <pim-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
raditzman
2005-06-12 07:56:32 UTC
Confirmed. SVN commit 432595 by lanius:
fix open external applications for mimetypes
BUG: 107257
M +2 -1 akregator_run.cpp
--- trunk/KDE/kdepim/akregator/src/akregator_run.cpp #432594:432595
@@ -48,7 +48,8 @@
if (type=="text/html" ||type=="text/xml" || type=="application/xhtml+xml" )
m_viewer->openPage(url());
else
- handleNonEmbeddable(type);
+ if ( handleNonEmbeddable(type) == KParts::BrowserRun::NotHandled )
+ KRun::foundMimeType( type );
}
void BrowserRun::killMyself()
|